chem-generic-ui 0.6.0-rc-dnd.7 → 0.6.0-rc-dnd.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +0 -4
- package/dist/bundle.js +1 -1
- package/package.json +5 -23
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "chem-generic-ui",
|
|
3
|
-
"version": "0.6.0-rc-dnd.
|
|
3
|
+
"version": "0.6.0-rc-dnd.8",
|
|
4
4
|
"main": "./dist/bundle.js",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"private": false,
|
|
@@ -14,30 +14,11 @@
|
|
|
14
14
|
"README.md"
|
|
15
15
|
],
|
|
16
16
|
"scripts": {
|
|
17
|
-
"
|
|
18
|
-
"
|
|
19
|
-
"compile": "rm -rf dist && NODE_ENV=production babel --ignore tests,stories ./src --out-dir ./dist",
|
|
17
|
+
"analyzer": "yarn webpack-bundle-analyzer stats.json",
|
|
18
|
+
"opt": "webpack --config ./webpack.config.js --profile --json > stats.json",
|
|
20
19
|
"build": "webpack --config ./webpack.config.js",
|
|
21
|
-
"cc:clean:dev5": "rm -rf /home/ubuntu/workspace/github/dev5/node_modules/chem-generic-ui/dist/*",
|
|
22
|
-
"cc:cp:dev5": "cp -f ./dist/* /home/ubuntu/workspace/github/dev5/node_modules/chem-generic-ui/dist/.",
|
|
23
|
-
"cc:cpp:dev5": "cp -f package.json /home/ubuntu/workspace/github/dev5/node_modules/chem-generic-ui/package.json",
|
|
24
|
-
"cc:cp:spec": "cp -f ./dist/* /home/ubuntu/workspace/github/react-spectra-editor/node_modules/chem-generic-ui/dist/.",
|
|
25
|
-
"cc:cpp:spec": "cp -f package.json /home/ubuntu/workspace/github/react-spectra-editor/node_modules/chem-generic-ui/package.json",
|
|
26
|
-
"cc:ubuntu": "yarn build && yarn cc:clean:dev5 && yarn cc:cp:dev5 && yarn cc:cpp:dev5 && yarn cc:cp:spec",
|
|
27
|
-
"cc:ubuntu6:clean": "rm -rf /home/ubuntu/workspace/github/dev6/node_modules/chem-generic-ui/dist/*",
|
|
28
|
-
"cc:ubuntu6:cp": "cp -f ./dist/* /home/ubuntu/workspace/github/dev6/node_modules/chem-generic-ui/dist/.",
|
|
29
|
-
"cc:ubuntu6:cpp": "cp -f package.json /home/ubuntu/workspace/github/dev6/node_modules/chem-generic-ui/package.json",
|
|
30
|
-
"cc:ubuntu6": "yarn build && yarn cc:ubuntu6:clean && yarn cc:ubuntu6:cp && yarn cc:ubuntu6:cpp",
|
|
31
|
-
"cc:clean:dev6": "rm -rf /home/claire/workspace/github/dev6/node_modules/chem-generic-ui/dist/*",
|
|
32
|
-
"cc:cp:dev6": "cp -rf ./dist/* /home/claire/workspace/github/dev6/node_modules/chem-generic-ui/dist/.",
|
|
33
|
-
"cc:cpp:dev6": "cp -rf package.json /home/claire/workspace/github/dev6/node_modules/chem-generic-ui/package.json",
|
|
34
|
-
"cc:claire6": "yarn build && yarn cc:clean:dev6 && yarn cc:cp:dev6 && yarn cc:cpp:dev6",
|
|
35
|
-
"cc:com": "this does not work, need to fine tune: yarn compile && yarn cc:clean:dev6 && cp -r ./src/* /home/claire/workspace/github/dev6/node_modules/chem-generic-ui/dist/.",
|
|
36
|
-
"sass": "sass src:src --no-source-map",
|
|
37
|
-
"cc:dev": "webpack --config ./webpack.config.js --mode=development && yarn cc:clean:dev6 && yarn cc:cp:dev6 && yarn cc:cpp:dev6",
|
|
38
20
|
"test": "jest --verbose",
|
|
39
|
-
"testall": "jest --verbose --coverage --watchAll=false"
|
|
40
|
-
"eject": "react-scripts eject"
|
|
21
|
+
"testall": "jest --verbose --coverage --watchAll=false"
|
|
41
22
|
},
|
|
42
23
|
"dependencies": {
|
|
43
24
|
"@fortawesome/fontawesome-svg-core": "^6.1.2",
|
|
@@ -115,6 +96,7 @@
|
|
|
115
96
|
"style-loader": "^3.3.1",
|
|
116
97
|
"terser-webpack-plugin": "^5.3.3",
|
|
117
98
|
"webpack": "^5.70.0",
|
|
99
|
+
"webpack-bundle-analyzer": "^4.9.0",
|
|
118
100
|
"webpack-cli": "^4.9.2",
|
|
119
101
|
"webpack-dev-server": "^4.7.4"
|
|
120
102
|
},
|