Skip to content

Commit

Permalink
fix: benchmarks fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
mauroerta committed Jun 6, 2021
1 parent fb013c7 commit fc59036
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion apps/benchmarks/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"email": "mauro@vlkstudio.com"
},
"scripts": {
"build": "rimraf build && babel ./src/ --out-dir build/ --ignore ./node_modules",
"build": "rimraf build && babel ./src/ --out-dir build/",
"morfeo-vs": "node build/morfeo-vs/index.js",
"core": "node build/core/index.js",
"jss": "node build/jss/index.js",
Expand Down
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
"scripts": {
"clean": "lerna clean --yes",
"build": "lerna run build",
"build:commonjs": "lerna run build:commonjs",
"watch": "lerna run watch",
"reset": "npm run clean && npm i && lerna bootstrap && npm run build",
"init:web-sandbox": "node scripts/bootstrap-app.mjs web-sandbox",
Expand All @@ -16,7 +17,7 @@
"init:benchmarks": "node scripts/bootstrap-app.mjs benchmarks",
"start:web-sandbox": "npm start --prefix apps/web-sandbox",
"start:svelte-sandbox": "npm run dev --prefix apps/svelte-sandbox",
"start:benchmarks": "npm run all --prefix apps/benchmarks",
"start:benchmarks": "npm run build:commonjs && npm run all --prefix apps/benchmarks",
"prepare": "husky install",
"prettify": "npm run prettify:js && npm run prettify:ts",
"prettify:js": "npx prettier --write \"**/*.js\"",
Expand Down
1 change: 1 addition & 0 deletions packages/core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
],
"scripts": {
"build": "rimraf build && tsc",
"build:commonjs": "rimraf build && tsc --module CommonJS",
"watch": "tsc -w"
},
"dependencies": {
Expand Down
1 change: 1 addition & 0 deletions packages/jss/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
],
"scripts": {
"build": "rimraf build && tsc",
"build:commonjs": "rimraf build && tsc --module CommonJS",
"watch": "tsc -w"
},
"dependencies": {
Expand Down
1 change: 1 addition & 0 deletions packages/spec/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
],
"scripts": {
"build": "rimraf build && tsc",
"build:commonjs": "rimraf build && tsc --module CommonJS",
"watch": "tsc -w"
},
"publishConfig": {
Expand Down

0 comments on commit fc59036

Please sign in to comment.