Merge pull request #1981 from roots/bootstrap-4-beta-2
Update to Bootstrap 4 Beta 2
This commit is contained in:
12
CHANGELOG.md
12
CHANGELOG.md
@@ -1,3 +1,15 @@
|
||||
### HEAD
|
||||
* Update to Bootstrap 4 Beta 2 ([#1981](https://github.com/roots/sage/pull/1981))
|
||||
* Add friendly-errors-webpack-plugin ([#1961](https://github.com/roots/sage/pull/1961))
|
||||
* Update to Controller 9.0.0-beta.4 ([#1959](https://github.com/roots/sage/pull/1959))
|
||||
* Change default Controller path to `app/controllers/` ([#1954](https://github.com/roots/sage/pull/1954))
|
||||
* Fix `lint:styles` task with cmd.exe ([#1955](https://github.com/roots/sage/pull/1955))
|
||||
* Ensure template filenames are without path and extension ([#1941](https://github.com/roots/sage/pull/1941))
|
||||
* Moved `title()` helper to `app.php` controller ([#1912](https://github.com/roots/sage/pull/1912))
|
||||
* Fix `lint:styles` script not matching files in deep subdirectories ([#1951](https://github.com/roots/sage/pull/1951))
|
||||
* Fix for plugins that don't enqueue their scripts properly ([#1949](https://github.com/roots/sage/pull/1949))
|
||||
* Fix Popper for Bootstrap 4 ([#1946](https://github.com/roots/sage/pull/1946))
|
||||
|
||||
### 9.0.0-beta.4: August 11th, 2017
|
||||
* Update to Bootstrap 4.0.0-beta ([#1943](https://github.com/roots/sage/pull/1943))
|
||||
* PHP 7+ is now required ([#1935](https://github.com/roots/sage/pull/1935))
|
||||
|
||||
2274
package-lock.json
generated
2274
package-lock.json
generated
File diff suppressed because it is too large
Load Diff
60
package.json
60
package.json
@@ -71,7 +71,29 @@
|
||||
"stylelint": {
|
||||
"extends": "stylelint-config-standard",
|
||||
"rules": {
|
||||
"no-empty-source": null
|
||||
"no-empty-source": null,
|
||||
"at-rule-no-unknown": [
|
||||
true,
|
||||
{
|
||||
"ignoreAtRules": [
|
||||
"extend",
|
||||
"at-root",
|
||||
"debug",
|
||||
"warn",
|
||||
"error",
|
||||
"if",
|
||||
"else",
|
||||
"for",
|
||||
"each",
|
||||
"while",
|
||||
"mixin",
|
||||
"include",
|
||||
"content",
|
||||
"return",
|
||||
"function"
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"scripts": {
|
||||
@@ -94,16 +116,16 @@
|
||||
"browsersync-webpack-plugin": "^0.6.0",
|
||||
"bs-html-injector": "~3.0",
|
||||
"buble-loader": "^0.4.1",
|
||||
"cache-loader": "~1.0",
|
||||
"cache-loader": "~1.1.0",
|
||||
"clean-webpack-plugin": "^0.1.16",
|
||||
"copy-globs-webpack-plugin": "^0.2.0",
|
||||
"css-loader": "^0.28.4",
|
||||
"cssnano": "~4.0.0-rc.1",
|
||||
"eslint": "~4.2",
|
||||
"cssnano": "~v4.0.0-rc.2",
|
||||
"eslint": "~4.9.0",
|
||||
"eslint-loader": "~1.9",
|
||||
"eslint-plugin-import": "~2.7",
|
||||
"eslint-plugin-import": "~2.8.0",
|
||||
"extract-text-webpack-plugin": "~3.0",
|
||||
"file-loader": "^0.11.2",
|
||||
"file-loader": "^1.1.5",
|
||||
"friendly-errors-webpack-plugin": "^1.6.1",
|
||||
"imagemin-mozjpeg": "~6.0",
|
||||
"imagemin-webpack-plugin": "~1.5.0-beta.0",
|
||||
@@ -114,21 +136,21 @@
|
||||
"resolve-url-loader": "~2.1",
|
||||
"rimraf": "~2.6",
|
||||
"sass-loader": "~6.0",
|
||||
"style-loader": "^0.18.2",
|
||||
"stylelint": "~7.12",
|
||||
"stylelint-config-standard": "~16.0",
|
||||
"stylelint-webpack-plugin": "^0.8.0",
|
||||
"url-loader": "^0.5.9",
|
||||
"webpack": "~3.3",
|
||||
"webpack-assets-manifest": "^0.7.0",
|
||||
"webpack-dev-middleware": "~1.11",
|
||||
"webpack-hot-middleware": "~2.18",
|
||||
"style-loader": "^0.19.0",
|
||||
"stylelint": "^8.2.0",
|
||||
"stylelint-config-standard": "~17.0.0",
|
||||
"stylelint-webpack-plugin": "^0.9.0",
|
||||
"url-loader": "^0.6.2",
|
||||
"webpack": "~3.8.1",
|
||||
"webpack-assets-manifest": "^1.0.0",
|
||||
"webpack-dev-middleware": "~1.12.0",
|
||||
"webpack-hot-middleware": "~2.20.0",
|
||||
"webpack-merge": "~4.1",
|
||||
"yargs": "~8.0"
|
||||
"yargs": "~9.0.1"
|
||||
},
|
||||
"dependencies": {
|
||||
"bootstrap": "^4.0.0-beta",
|
||||
"popper.js": "^1.11.0",
|
||||
"jquery": "1.12.4 - 3"
|
||||
"bootstrap": "v4.0.0-beta.2",
|
||||
"jquery": "1.12.4 - 3",
|
||||
"popper.js": "^1.12.3"
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user