mirror of
https://github.com/prurigro/hypothetical.git
synced 2024-11-21 15:42:31 -05:00
Update dependencies and remove the browsers option from autoprefixerSettings as this is now handled by .browserlistrc
This commit is contained in:
parent
fa9a9fd263
commit
41abe474f2
6 changed files with 1311 additions and 949 deletions
1057
composer.lock
generated
1057
composer.lock
generated
File diff suppressed because it is too large
Load diff
2
gulpfile.js
vendored
2
gulpfile.js
vendored
|
@ -36,7 +36,7 @@ if (!isProduction) {
|
|||
// Declare plugin settings
|
||||
const sassOutputStyle = isProduction ? "compressed" : "expanded",
|
||||
sassPaths = [ "bower_components", "node_modules" ],
|
||||
autoprefixerSettings = { remove: false, cascade: false, browsers: [ "last 6 versions" ] },
|
||||
autoprefixerSettings = { remove: false, cascade: false },
|
||||
vuePaths = [ "./bower_components", "./node_modules", "./resources/components", "./resources/assets/js" ];
|
||||
|
||||
// Javascript files for the public site
|
||||
|
|
1165
package-lock.json
generated
1165
package-lock.json
generated
File diff suppressed because it is too large
Load diff
18
package.json
18
package.json
|
@ -5,18 +5,18 @@
|
|||
"dev": "gulp default watch"
|
||||
},
|
||||
"devDependencies": {
|
||||
"browser-sync": "2.26.5"
|
||||
"browser-sync": "2.26.7"
|
||||
},
|
||||
"dependencies": {
|
||||
"@babel/core": "^7.4.4",
|
||||
"@babel/preset-env": "^7.4.4",
|
||||
"autoprefixer": "^9.5.1",
|
||||
"@babel/core": "^7.5.5",
|
||||
"@babel/preset-env": "^7.5.5",
|
||||
"autoprefixer": "^9.6.1",
|
||||
"babelify": "^10.0.0",
|
||||
"bootstrap": "4.3.1",
|
||||
"browserify": "^16.2.3",
|
||||
"browserify": "^16.5.0",
|
||||
"fancy-log": "^1.3.3",
|
||||
"flatpickr": "^4.6.2",
|
||||
"gsap": "^2.1.2",
|
||||
"gsap": "^2.1.3",
|
||||
"gulp": "^4.0.2",
|
||||
"gulp-babel": "^8.0.0",
|
||||
"gulp-clean-css": "^4.2.0",
|
||||
|
@ -24,7 +24,7 @@
|
|||
"gulp-plumber": "^1.2.1",
|
||||
"gulp-postcss": "^8.0.0",
|
||||
"gulp-sass": "^4.0.2",
|
||||
"gulp-sass-glob": "^1.0.9",
|
||||
"gulp-sass-glob": "^1.1.0",
|
||||
"gulp-strip-debug": "^3.0.0",
|
||||
"gulp-uglify": "^3.0.2",
|
||||
"jquery": "^3.4.1",
|
||||
|
@ -34,11 +34,11 @@
|
|||
"vinyl-source-stream": "^2.0.0",
|
||||
"vue": "^2.6.10",
|
||||
"vue-resource": "^1.5.1",
|
||||
"vue-router": "^3.0.6",
|
||||
"vue-router": "^3.1.2",
|
||||
"vue-template-compiler": "^2.6.10",
|
||||
"vueify-next": "^9.5.3",
|
||||
"vuex": "^3.1.1",
|
||||
"vuex-router-sync": "^5.0.0",
|
||||
"what-input": "^5.2.1"
|
||||
"what-input": "^5.2.3"
|
||||
}
|
||||
}
|
||||
|
|
2
traditional-bootstrap/gulpfile.js
vendored
2
traditional-bootstrap/gulpfile.js
vendored
|
@ -30,7 +30,7 @@ if (!isProduction) {
|
|||
// Declare plugin settings
|
||||
const sassOutputStyle = isProduction ? "compressed" : "expanded",
|
||||
sassPaths = [ "bower_components", "node_modules" ],
|
||||
autoprefixerSettings = { remove: false, cascade: false, browsers: [ "last 6 versions" ] };
|
||||
autoprefixerSettings = { remove: false, cascade: false };
|
||||
|
||||
// Javascript files for the public site
|
||||
const jsPublic = [
|
||||
|
|
|
@ -5,16 +5,16 @@
|
|||
"dev": "gulp default watch"
|
||||
},
|
||||
"devDependencies": {
|
||||
"browser-sync": "2.26.5"
|
||||
"browser-sync": "2.26.7"
|
||||
},
|
||||
"dependencies": {
|
||||
"@babel/core": "^7.4.4",
|
||||
"@babel/preset-env": "^7.4.4",
|
||||
"autoprefixer": "^9.5.1",
|
||||
"@babel/core": "^7.5.5",
|
||||
"@babel/preset-env": "^7.5.5",
|
||||
"autoprefixer": "^9.6.1",
|
||||
"babelify": "^10.0.0",
|
||||
"bootstrap": "4.3.1",
|
||||
"fancy-log": "^1.3.3",
|
||||
"gsap": "^2.1.2",
|
||||
"gsap": "^2.1.3",
|
||||
"gulp": "^4.0.2",
|
||||
"gulp-babel": "^8.0.0",
|
||||
"gulp-clean-css": "^4.2.0",
|
||||
|
@ -22,13 +22,13 @@
|
|||
"gulp-plumber": "^1.2.1",
|
||||
"gulp-postcss": "^8.0.0",
|
||||
"gulp-sass": "^4.0.2",
|
||||
"gulp-sass-glob": "^1.0.9",
|
||||
"gulp-sass-glob": "^1.1.0",
|
||||
"gulp-strip-debug": "^3.0.0",
|
||||
"gulp-uglify": "^3.0.2",
|
||||
"jquery": "^3.4.1",
|
||||
"minimist": "^1.2.0",
|
||||
"pickadate": "^3.6.3",
|
||||
"pickadate": "^3.6.4",
|
||||
"popper.js": "^1.15.0",
|
||||
"what-input": "^5.2.1"
|
||||
"what-input": "^5.2.3"
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue