npm run upload

This commit is contained in:
Rick Companje 2018-01-30 17:34:37 +01:00
parent ad94402400
commit d300a31929
2 changed files with 2 additions and 2 deletions

View File

@ -88,8 +88,6 @@ async function init() {
await new Promise(resolve => document.addEventListener('deviceready', resolve, false));
}
console.log(btnExportURL);
render((
<Provider store={store}>
<span>

View File

@ -10,6 +10,8 @@
"ios": "TARGET=app webpack -p && cordova run ios",
"prepare": "npm run build",
"lint": "eslint src",
"dist": "NODE_ENV=production webpack -p",
"upload": "npm run dist && scp -r dist/* doodle3d.com:/domains/doodle3d.com/core",
"build": "npm run build:main && npm run build:module ",
"build:main": "BABEL_ENV=main babel src -s -d lib",
"build:module": "BABEL_ENV=module babel src -s -d module"