Release command builds both min and non-min files; Version promote

This commit is contained in:
James Barnsley
2017-02-03 08:15:55 +13:00
parent c0633ad409
commit 808ce2d18c
2 changed files with 2 additions and 2 deletions

View File

@ -43,6 +43,6 @@
"scripts": {
"dev": "NODE_ENV=development webpack && ./build.sh",
"prod": "NODE_ENV=production webpack && ./build.sh",
"release": "NODE_ENV=production webpack && ./build.sh && python setup.py sdist upload -r pypi"
"release": "NODE_ENV=production webpack && NODE_ENV=development webpack && ./build.sh && python setup.py sdist upload -r pypi"
}
}