Skip to content

Commit

Permalink
adds cross-env for windows machine
Browse files Browse the repository at this point in the history
  • Loading branch information
carlosmaniero committed Jul 21, 2020
1 parent 05a903c commit b240cac
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
9 changes: 5 additions & 4 deletions jig/cli/new-project/template/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,15 @@
"scripts": {
"start": "ts-node src/server.ts",
"build": "jigjs-build",
"build:analyse-bundle": "SHOW_BUNDLE_REPORT=true npm run build",
"build:watch": "DEV=true BUILD_WATCH=true npm run build",
"server:watch": "DEV=true ts-node-dev --no-notify src/server.ts",
"dev": "concurrently -n build,server \"npm run build:watch\" \"DEV=true ts-node-dev --no-notify src/server.ts\"",
"build:analyse-bundle": "cross-env SHOW_BUNDLE_REPORT=true npm run build",
"build:watch": "cross-env DEV=true BUILD_WATCH=true npm run build",
"server:watch": "cross-env DEV=true ts-node-dev --no-notify src/server.ts",
"dev": "concurrently -n build,server \"npm run build:watch\" \"npm run server:watch\"",
"test": "jest"
},
"dependencies": {
"jigjs": "^{{jigjs-version}}",
"cross-env": "^7.0.2",
"express": "^4.17.1",
"ts-loader": "^7.0.1",
"ts-node": "^8.10.1",
Expand Down
2 changes: 1 addition & 1 deletion jig/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "jigjs",
"version": "0.0.0-pre-alpha.30",
"version": "0.0.0-pre-alpha.31",
"description": "A front-end library",
"author": "Carlos Maniero",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion jigcss/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "jigcss",
"version": "0.0.0-pre-alpha.30",
"version": "0.0.0-pre-alpha.31",
"description": "A css-in-js module for jigjs",
"repository": "https://github.com/carlosmaniero/jigjs.git",
"author": "Carlos Maniero",
Expand Down

0 comments on commit b240cac

Please sign in to comment.