mirror of
https://github.com/mdbootstrap/mdb-ui-kit.git
synced 2024-11-10 19:57:13 +03:00
release: v4.0.0-beta.3
This commit is contained in:
parent
4448e23be2
commit
760340fc78
14
_config.yml
14
_config.yml
|
@ -31,7 +31,7 @@ social_logo_path: /assets/brand/bootstrap-social-logo.png
|
|||
social_image_path: /assets/brand/bootstrap-social.png
|
||||
|
||||
# Custom vars
|
||||
current_version: 4.0.0-beta
|
||||
current_version: 4.0.0-beta.3
|
||||
docs_version: 4.0
|
||||
repo: https://github.com/FezVrasta/bootstrap-material-design
|
||||
slack: https://bootstrap-slack.herokuapp.com
|
||||
|
@ -47,12 +47,12 @@ mdp: https://www.creative-tim.com/product/material-dashboard-pro?af
|
|||
|
||||
cdn:
|
||||
# See https://www.srihash.org for info on how to generate the hashes
|
||||
css: https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta/css/bootstrap-material-design.min.css
|
||||
css_hash: "sha384-/Y6pD6FV/Vv2HJnA6t+vslU6fwYXjCFtcEpHbNJ0lyAFsXTsjBbfaDjzALeQsN6M"
|
||||
js: https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta/js/bootstrap-material-design.min.js
|
||||
js_hash: "sha384-h0AbiXch4ZDo7tp9hKZ4TsHbi047NrKGLO3SEJAg45jXxnGIfYzk4Si90RDIqNm1"
|
||||
css: https://unpkg.com/bootstrap-material-design@4.0.0-beta.3/dist/css/bootstrap-material-design.min.css
|
||||
css_hash: "sha384-k5bjxeyx3S5yJJNRD1eKUMdgxuvfisWKku5dwHQq9Q/Lz6H8CyL89KF52ICpX4cL"
|
||||
js: https://unpkg.com/bootstrap-material-design@4.0.0-beta.3/dist/js/bootstrap-material-design.js
|
||||
js_hash: "sha384-hC7RwS0Uz+TOt6rNG8GX0xYCJ2EydZt1HeElNwQqW+3udRol4XwyBfISrNDgQcGA"
|
||||
jquery: https://code.jquery.com/jquery-3.2.1.slim.min.js
|
||||
jquery_hash: "sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN"
|
||||
popper: https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.11.0/umd/popper.min.js
|
||||
popper_hash: "sha384-b/U6ypiBEHpOf/4+1nzFpr53nxSS+GLCkfwBdFNTxtclqqenISfwAzpKaMNFNmj4"
|
||||
popper: https://unpkg.com/popper.js@1.12.5/dist/umd/popper.js
|
||||
popper_hash: "sha384-KlVcf2tswD0JOTQnzU4uwqXcbAy57PvV48YUiLjqpk/MJ2wExQhg9tuozn5A1iVw"
|
||||
snackbar: https://cdn.rawgit.com/FezVrasta/snackbarjs/1.1.0/dist/snackbar.min.js
|
||||
|
|
14
package.json
14
package.json
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"name": "bootstrap-material-design",
|
||||
"description": "Material Design for Bootstrap 4",
|
||||
"version": "4.0.0-beta",
|
||||
"version": "4.0.0-beta.3",
|
||||
"keywords": [
|
||||
"material",
|
||||
"design",
|
||||
|
@ -18,20 +18,20 @@
|
|||
"homepage": "https://github.com/FezVrasta/bootstrap-material-design",
|
||||
"author": "Federico Zivolo",
|
||||
"scripts": {
|
||||
"docs-compile": "bundle exec jekyll build",
|
||||
"docs-serve": "bundle exec jekyll serve",
|
||||
"docs:compile": "bundle exec jekyll build",
|
||||
"docs:serve": "bundle exec jekyll serve",
|
||||
"docs:assets": "node-sass --include-path node_modules assets/scss/docs.scss > assets/css/docs.css && cssnano assets/css/docs.css assets/css/docs.min.css",
|
||||
"docs:deploy": "./deploy.sh",
|
||||
"prepare": "npm run build",
|
||||
"build": "npm run build:js && npm run build:css",
|
||||
"build:js": "rollup js/index.js --output=dist/js/bootstrap-material-design.js -m --config=rollup.config.js && npm run build:js-min",
|
||||
"build:js-min": "babili dist/js/bootstrap-material-design.js -d dist/js/bootstrap-material-design.min.js",
|
||||
"build:js-min": "minify dist/js/bootstrap-material-design.js --out-file dist/js/bootstrap-material-design.min.js",
|
||||
"build:css": "mkdir -p dist/css && node-sass --include-path node_modules scss/bootstrap-material-design.scss > dist/css/bootstrap-material-design.css && npm run build:css-min",
|
||||
"build:css-min": "cssnano dist/css/bootstrap-material-design.css dist/css/bootstrap-material-design.min.css"
|
||||
},
|
||||
"style": "dist/css/bootstrap-material-design.css",
|
||||
"sass": "scss/_core.scss",
|
||||
"main": "dist/bootstrap-material-design.umd.js",
|
||||
"jsnext:main": "js/index.js",
|
||||
"main": "dist/js/bootstrap-material-design.js",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/FezVrasta/bootstrap-material-design.git"
|
||||
|
@ -43,11 +43,11 @@
|
|||
"dependencies": {},
|
||||
"devDependencies": {
|
||||
"babel-core": "^6.25.0",
|
||||
"babel-minify": "^0.2.0",
|
||||
"babel-plugin-external-helpers": "^6.22.0",
|
||||
"babel-plugin-module-alias": "^1.6.0",
|
||||
"babel-plugin-transform-es2015-modules-strip": "^0.1.1",
|
||||
"babel-preset-es2015": "^6.24.1",
|
||||
"babili": "^0.1.4",
|
||||
"bootstrap": "4.0.0-beta",
|
||||
"cssnano-cli": "^1.0.5",
|
||||
"jquery": ">=3.0.0",
|
||||
|
|
Loading…
Reference in New Issue
Block a user