[bootstrap] migrate bootstrap to 4.6.0
Attempt to run react-bootstrap but errors occur.
Showing
dist/js/react-bootstrap.js
0 → 100644
This diff is collapsed.
This source diff could not be displayed because it is too large. You can view the blob instead.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
... | ... | @@ -9,7 +9,14 @@ |
"install-ps": "psc-package install", | ||
"compile": "pulp build", | ||
"build": "pulp browserify -t dist/bundle.js", | ||
"css": "sass src/sass/sass.sass:dist/styles/sass.css && sass src/sass/bootstrap/default.sass:dist/styles/bootstrap-default.css && cp node_modules/bootstrap-dark/src/bootstrap-dark.css dist/styles/bootstrap-dark.css && sass src/sass/bootstrap/greyson.scss:dist/styles/bootstrap-greyson.css && sass src/sass/bootstrap/monotony.scss:dist/styles/bootstrap-monotony.css && sass src/sass/bootstrap/darkster.scss:dist/styles/bootstrap-darkster.css && sass src/sass/bootstrap/herbie.scss:dist/styles/bootstrap-herbie.css", | ||
"css": "sass src/sass/sass.sass:dist/styles/sass.css && yarn css-themes", | ||
"css-themes": "yarn css-default-theme && yarn css-dark-theme && yarn css-darkster-theme && yarn css-greyson-theme && yarn css-herbie-theme && yarn css-monotony-theme", | ||
"css-default-theme": "sass src/sass/bootstrap/default.sass:dist/styles/bootstrap-default.css", | ||
"css-dark-theme": "cp node_modules/bootstrap-dark/src/bootstrap-dark.css dist/styles/bootstrap-dark.css", | ||
"css-darkster-theme": "sass src/sass/bootstrap/darkster.scss:dist/styles/bootstrap-darkster.css", | ||
"css-greyson-theme": "sass src/sass/bootstrap/greyson.scss:dist/styles/bootstrap-greyson.css", | ||
"css-herbie-theme": "sass src/sass/bootstrap/herbie.scss:dist/styles/bootstrap-herbie.css", | ||
"css-monotony-theme": "sass src/sass/bootstrap/monotony.scss:dist/styles/bootstrap-monotony.css", | ||
"docs": "pulp docs -- --format html", | ||
"repl": "pulp repl", | ||
"clean": "rm -Rf output node_modules", | ||
... | ... | @@ -24,9 +31,10 @@ |
"prod:pack": "parcel build index.html -d prod --public-url . --no-source-maps" | ||
}, | ||
"dependencies": { | ||
"@popperjs/core": "^2.9.2", | ||
"aes-js": "^3.1.1", | ||
"base-x": "^3.0.2", | ||
"bootstrap": "4.4.1", | ||
"bootstrap": "^4.6.0", | ||
"bootstrap-dark": "^1.0.3", | ||
"create-react-class": "^15.6.3", | ||
"echarts": "^4.1.0", | ||
... | ... | @@ -37,6 +45,7 @@ |
"pullstate": "^1.20.6", | ||
"react": "^16.10", | ||
"react-awesome-popover": "^6.1.1", | ||
"react-bootstrap": "^1.5.2", | ||
"react-dom": "^16.10", | ||
"react-tooltip": "^4.2.8", | ||
"secp256k1": "^3.3.0", | ||
... | ... |
This diff is collapsed.
Please register or sign in to comment