Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use cross-env to pass env vars across platforms #327

Merged
merged 3 commits into from
Sep 25, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion packages/emotion/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,15 @@
"clean": "rimraf dist",
"rollup": "rollup -c ../../rollup.config.js",
"watch": "rollup -c ../../rollup.config.js --watch",
"rollup:umd": "UMD=true rollup -c ../../rollup.config.js"
"rollup:umd": "cross-env UMD=true rollup -c ../../rollup.config.js"
},
"dependencies": {
"babel-plugin-emotion": "^8.0.2-6",
"emotion-utils": "^8.0.2-3"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"cross-env": "^5.0.5",
"npm-run-all": "^4.0.2",
"rimraf": "^2.6.1",
"rollup": "^0.43.0"
Expand Down
3 changes: 2 additions & 1 deletion packages/react-emotion/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"clean": "rimraf dist",
"rollup": "rollup -c ../../rollup.config.js",
"watch": "rollup -c ../../rollup.config.js --watch",
"rollup:umd": "UMD=true rollup -c ../../rollup.config.js"
"rollup:umd": "cross-env UMD=true rollup -c ../../rollup.config.js"
},
"dependencies": {
"babel-plugin-emotion": "^8.0.2-6",
Expand All @@ -24,6 +24,7 @@
"emotion": "^8.0.2-6"
},
"devDependencies": {
"cross-env": "^5.0.5",
"emotion": "^8.0.2-6",
"npm-run-all": "^4.0.2",
"rimraf": "^2.6.1",
Expand Down