Skip to content

Commit e2773bc

Browse files
authoredJun 10, 2022
fix(build): fix parcel build (#814)
* fix(build): fix parcel build
1 parent 0ea22fb commit e2773bc

File tree

29 files changed

+630
-544
lines changed

29 files changed

+630
-544
lines changed
 

‎addition-rnn-webworker/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
},
1515
"scripts": {
1616
"watch": "cross-env NODE_ENV=development parcel index.html --no-hmr --open",
17-
"build": "cross-env NODE_ENV=production parcel build index.html --public-url ./",
17+
"build": "cross-env NODE_ENV=production parcel build --no-scope-hoist index.html --public-url ./",
1818
"link-local": "yalc link"
1919
},
2020
"devDependencies": {

‎addition-rnn/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
},
1515
"scripts": {
1616
"watch": "cross-env NODE_ENV=development parcel index.html --no-hmr --open",
17-
"build": "cross-env NODE_ENV=production parcel build index.html --public-url ./",
17+
"build": "cross-env NODE_ENV=production parcel build --no-scope-hoist index.html --public-url ./",
1818
"link-local": "yalc link"
1919
},
2020
"devDependencies": {

‎boston-housing/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
},
1616
"scripts": {
1717
"watch": "cross-env NODE_ENV=development parcel index.html --no-hmr --open",
18-
"build": "cross-env NODE_ENV=production parcel build index.html --public-url ./",
18+
"build": "cross-env NODE_ENV=production parcel build --no-scope-hoist index.html --public-url ./",
1919
"link-local": "yalc link"
2020
},
2121
"devDependencies": {

‎cart-pole/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
"@tensorflow/tfjs-vis": "^1.4.3"
1414
},
1515
"scripts": {
16-
"build": "cross-env NODE_ENV=production parcel build index.html --public-url ./",
16+
"build": "cross-env NODE_ENV=production parcel build --no-scope-hoist index.html --public-url ./",
1717
"link-local": "yalc link",
1818
"watch": "./serve.sh"
1919
},

‎custom-layer/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
},
1414
"scripts": {
1515
"watch": "cross-env NODE_ENV=development parcel index.html --no-hmr --open",
16-
"build": "cross-env NODE_ENV=production parcel build index.html --public-url ./",
16+
"build": "cross-env NODE_ENV=production parcel build --no-scope-hoist index.html --public-url ./",
1717
"link-local": "yalc link"
1818
},
1919
"devDependencies": {

‎data-generator/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
"scripts": {
1313
"link-local": "yalc link",
1414
"watch": "cross-env NODE_ENV=development parcel index.html --no-hmr --open",
15-
"build": "cross-env NODE_ENV=production parcel build index.html --public-url ./"
15+
"build": "cross-env NODE_ENV=production parcel build --no-scope-hoist index.html --public-url ./"
1616
},
1717
"devDependencies": {
1818
"@babel/core": "^7.12.0",

‎date-conversion-attention/package.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -5,21 +5,21 @@
55
"license": "Apache-2.0",
66
"private": true,
77
"scripts": {
8-
"build": "cross-env NODE_ENV=production parcel build index.html --public-url ./",
8+
"build": "cross-env NODE_ENV=production parcel build --no-scope-hoist index.html --public-url ./",
99
"test": "babel-node run_tests.js",
1010
"train": "babel-node train.js",
1111
"watch": "cross-env NODE_ENV=development parcel index.html --no-hmr --open"
1212
},
1313
"dependencies": {
14-
"@tensorflow/tfjs": "3.0.0",
14+
"@tensorflow/tfjs": "3.18.0",
1515
"@tensorflow/tfjs-vis": "^1.4.3"
1616
},
1717
"devDependencies": {
1818
"@babel/core": "7.18.2",
1919
"@babel/node": "7.17.10",
2020
"@babel/preset-env": "7.18.2",
21-
"@tensorflow/tfjs-node": "3.0.0",
22-
"@tensorflow/tfjs-node-gpu": "3.0.0",
21+
"@tensorflow/tfjs-node": "3.18.0",
22+
"@tensorflow/tfjs-node-gpu": "3.18.0",
2323
"argparse": "^1.0.10",
2424
"buffer": "^6.0.3",
2525
"clang-format": "~1.2.2",

0 commit comments

Comments
 (0)