bootstrap-dark-5
Advanced tools
Comparing version 1.0.2 to 1.1.0
{ | ||
"name": "bootstrap-dark-5", | ||
"version": "1.0.2", | ||
"version": "1.1.0", | ||
"description": "The Ancillary Guide to Dark Mode and Bootstrap 5 - A continuation of the v4 Dark Mode POC", | ||
@@ -26,2 +26,3 @@ "main": "", | ||
"css-minify-blackbox": "cleancss -O1 --format breakWith=lf --output dist/css/bootstrap-blackbox.min.css dist/css/bootstrap-blackbox.css", | ||
"css-minify-colors": "cleancss -O1 --format breakWith=lf --output dist/css/bootstrap-colors.min.css dist/css/bootstrap-colors.css", | ||
"css-version": "replace-in-file --configFile=build/replace-in-file.config.js", | ||
@@ -41,3 +42,5 @@ "css-lint": "npm-run-all --continue-on-error --parallel css-lint-*", | ||
"watch-root": "nodemon --watch . --ext html --exec \"browser-sync reload\"", | ||
"BROKEN_docs": "npm-run-all --parallel docs-*", "docs": "", | ||
"docs": "run-script-os", | ||
"docs:darwin:linux": "npm-run-all --parallel docs-*", | ||
"docs:windows:": "echo \"Sorry: documentation tool does not work on Windows :(\"", | ||
"docs-js-darkmode": "documentation build js/src/darkmode.ts --parse-extension ts -f md -o docs/darkmode.js.md --markdown-toc true --shallow false", | ||
@@ -88,32 +91,35 @@ "map-dark-vars": "npm-run-all --parallel map-dark-vars-*", | ||
"devDependencies": { | ||
"@popperjs/core": "^2.9.2", | ||
"@typescript-eslint/eslint-plugin": "^4.28.0", | ||
"@typescript-eslint/parser": "^4.28.0", | ||
"autoprefixer": "^10.2.6", | ||
"browser-sync": "^2.26.14", | ||
"clean-css-cli": "^5.3.0", | ||
"@typescript-eslint/eslint-plugin": "^4.29.0", | ||
"@typescript-eslint/parser": "^4.29.0", | ||
"autoprefixer": "^10.3.1", | ||
"browser-sync": "^2.27.5", | ||
"clean-css-cli": "^5.3.3", | ||
"cross-env": "^7.0.3", | ||
"documentation": "^13.2.5", | ||
"eslint": "^7.29.0", | ||
"eslint": "^7.32.0", | ||
"eslint-config-xo": "^0.37.0", | ||
"eslint-plugin-import": "^2.23.4", | ||
"eslint-plugin-unicorn": "^33.0.1", | ||
"eslint-plugin-unicorn": "^35.0.0", | ||
"find-unused-sass-variables": "^3.1.0", | ||
"nodemon": "^2.0.7", | ||
"nodemon": "^2.0.12", | ||
"npm-run-all": "^4.1.5", | ||
"postcss": "^8.3.5", | ||
"postcss": "^8.3.6", | ||
"postcss-cli": "^8.3.1", | ||
"replace-in-file": "^6.2.0", | ||
"rimraf": "^3.0.2", | ||
"sass": "^1.35.1", | ||
"run-script-os": "^1.1.6", | ||
"sass": "^1.37.5", | ||
"stylelint": "^13.13.1", | ||
"stylelint-config-twbs-bootstrap": "^2.2.1", | ||
"terser": "^5.6.1", | ||
"typescript": "^4.3.4", | ||
"unherit": "^2.0.0", | ||
"stylelint-config-twbs-bootstrap": "^2.2.3", | ||
"terser": "^5.7.1", | ||
"typescript": "^4.3.5", | ||
"unherit": "^3.0.0", | ||
"x-is-string": "^0.1.0" | ||
}, | ||
"dependencies": { | ||
"bootstrap": "^5.0.2" | ||
"bootstrap": "^5.1.0" | ||
}, | ||
"peerDependencies": { | ||
"@popperjs/core": "^2.9.3" | ||
} | ||
} |
@@ -82,3 +82,13 @@ # The Ancillary Guide to Dark Mode and Bootstrap 5 | ||
#### Note 1: | ||
This code is just a rehash of Bootstrap 5 core code to add "dark mode" functionality and is declared as a "Proof of Concept" *(PoC)* - that means it's not intended as a production source, but merely an exercise to prove that dark-mode is attainable via various methods, i.e. it is an educative piece. It also means that it's author *(Vino Rodrigues)* is not compelled to support it. | ||
#### Note 2: | ||
This project will ***not*** compile with Node-Sass. Refer to the original Bootstrap 5 docs, especially here (https://getbootstrap.com/docs/5.0/getting-started/build-tools/#sass), and you'll note that they have deprecated the use of Node-Sass in favour of Dart-Sass. | ||
They in turn cite this (https://sass-lang.com/blog/libsass-is-deprecated) article wherein the Sass curators state they will no longer support LibSass, that Node-Sass is dependant on. | ||
### NPM | ||
@@ -103,5 +113,5 @@ | ||
* Production / minified variant: | ||
* [`https://cdn.jsdelivr.net/npm/bootstrap-dark-5@1.0.1/dist/css/bootstrap-dark.min.css`](https://cdn.jsdelivr.net/npm/bootstrap-dark-5@1.0.1/dist/css/bootstrap-dark.min.css) | ||
* [`https://cdn.jsdelivr.net/npm/bootstrap-dark-5@1.1.0/dist/css/bootstrap-dark.min.css`](https://cdn.jsdelivr.net/npm/bootstrap-dark-5@1.1.0/dist/css/bootstrap-dark.min.css) | ||
* Development / Debug variant: | ||
* [`https://cdn.jsdelivr.net/npm/bootstrap-dark-5@1.0.1/dist/css/bootstrap-dark.css`](https://cdn.jsdelivr.net/npm/bootstrap-dark-5@1.0.1/dist/css/bootstrap-dark.css) | ||
* [`https://cdn.jsdelivr.net/npm/bootstrap-dark-5@1.1.0/dist/css/bootstrap-dark.css`](https://cdn.jsdelivr.net/npm/bootstrap-dark-5@1.1.0/dist/css/bootstrap-dark.css) | ||
* Also, read the [Quick Start Guide](docs/bootstrap-dark.md). | ||
@@ -111,7 +121,7 @@ | ||
* Production / minified variants: | ||
* [`https://cdn.jsdelivr.net/npm/bootstrap-dark-5@1.0.1/dist/css/bootstrap-nightshade.min.css`](https://cdn.jsdelivr.net/npm/bootstrap-dark-5@1.0.1/dist/css/bootstrap-nightshade.min.css) | ||
* [`https://cdn.jsdelivr.net/npm/bootstrap-dark-5@1.0.1/dist/js/darkmode.min.js`](https://cdn.jsdelivr.net/npm/bootstrap-dark-5@1.0.1/dist/js/darkmode.min.js) | ||
* [`https://cdn.jsdelivr.net/npm/bootstrap-dark-5@1.1.0/dist/css/bootstrap-nightshade.min.css`](https://cdn.jsdelivr.net/npm/bootstrap-dark-5@1.1.0/dist/css/bootstrap-nightshade.min.css) | ||
* [`https://cdn.jsdelivr.net/npm/bootstrap-dark-5@1.1.0/dist/js/darkmode.min.js`](https://cdn.jsdelivr.net/npm/bootstrap-dark-5@1.1.0/dist/js/darkmode.min.js) | ||
* Development / Debug variants: | ||
* [`https://cdn.jsdelivr.net/npm/bootstrap-dark-5@1.0.1/dist/css/bootstrap-nightshade.css`](https://cdn.jsdelivr.net/npm/bootstrap-dark-5@1.0.1/dist/css/bootstrap-nightshade.css) | ||
* [`https://cdn.jsdelivr.net/npm/bootstrap-dark-5@1.0.1/dist/js/darkmode.js`](https://cdn.jsdelivr.net/npm/bootstrap-dark-5@1.0.1/dist/js/darkmode.js) | ||
* [`https://cdn.jsdelivr.net/npm/bootstrap-dark-5@1.1.0/dist/css/bootstrap-nightshade.css`](https://cdn.jsdelivr.net/npm/bootstrap-dark-5@1.1.0/dist/css/bootstrap-nightshade.css) | ||
* [`https://cdn.jsdelivr.net/npm/bootstrap-dark-5@1.1.0/dist/js/darkmode.js`](https://cdn.jsdelivr.net/npm/bootstrap-dark-5@1.1.0/dist/js/darkmode.js) | ||
* Also, read the [Quick Start Guide](docs/bootstrap-nightshade.md) and the [`darkmode.js` Reference](docs/darkmode.js.md). | ||
@@ -121,5 +131,5 @@ | ||
* Production / minified variant: | ||
* [`https://cdn.jsdelivr.net/npm/bootstrap-dark-5@1.0.1/dist/css/bootstrap-night.min.css`](https://cdn.jsdelivr.net/npm/bootstrap-dark-5@1.0.1/dist/css.bootstrap-night.min.css) | ||
* [`https://cdn.jsdelivr.net/npm/bootstrap-dark-5@1.1.0/dist/css/bootstrap-night.min.css`](https://cdn.jsdelivr.net/npm/bootstrap-dark-5@1.1.0/dist/css/bootstrap-night.min.css) | ||
* Development / Debug variant: | ||
* [`https://cdn.jsdelivr.net/npm/bootstrap-dark-5@1.0.1/dist/css/bootstrap-night.css`](https://cdn.jsdelivr.net/npm/bootstrap-dark-5@1.0.1/dist/css/bootstrap-night.css) | ||
* [`https://cdn.jsdelivr.net/npm/bootstrap-dark-5@1.1.0/dist/css/bootstrap-night.css`](https://cdn.jsdelivr.net/npm/bootstrap-dark-5@1.1.0/dist/css/bootstrap-night.css) | ||
* Also, read the [Quick Start Guide](docs/bootstrap-night.md). | ||
@@ -126,0 +136,0 @@ |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
7362823
96
68220
159
2
523
Updatedbootstrap@^5.1.0