Skip to content

Commit

Permalink
chore: Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
mvsde committed Aug 10, 2020
1 parent 3cf6205 commit 07c1ba3
Show file tree
Hide file tree
Showing 7 changed files with 1,753 additions and 1,590 deletions.
6 changes: 4 additions & 2 deletions lib/commands/dev.js
Original file line number Diff line number Diff line change
Expand Up @@ -66,9 +66,11 @@ module.exports = async function (options) {
const server = new WebpackDevServer(compiler, webpackConfig.devServer)

// Listen for webpack's "Done" event
compiler.hooks.done.tap('Done', () => {
compiler.hooks.done.tap('BrowserReload', () => {
const modified = compiler.modifiedFiles

// Determine if a reload should happen
const shouldReload = [...compiler.modifiedFiles].some(file => {
const shouldReload = modified && [...modified].some(file => {
return normalizePath(file).match(/(\.njk|\.temp\/html\.js)$/)
})

Expand Down
1,214 changes: 744 additions & 470 deletions package-lock.json

Large diffs are not rendered by default.

42 changes: 21 additions & 21 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -50,63 +50,63 @@
"pangolin-core": "bin/pangolin-core.js"
},
"dependencies": {
"@babel/core": "^7.10.4",
"@babel/core": "^7.11.1",
"@nuxtjs/friendly-errors-webpack-plugin": "^2.1.0",
"babel-loader": "^8.1.0",
"chalk": "^4.1.0",
"chokidar": "^3.4.0",
"chokidar": "^3.4.2",
"ci-info": "^2.0.0",
"commander": "^6.0.0-0",
"commander": "^6.0.0",
"copy-webpack-plugin": "^6.0.3",
"css-loader": "^3.6.0",
"css-loader": "^4.2.1",
"cssnano": "^4.1.10",
"eslint-loader": "^4.0.2",
"fast-glob": "^3.2.4",
"file-loader": "^6.0.0",
"lodash.merge": "^4.6.2",
"marked": "^1.1.0",
"marked": "^1.1.1",
"mini-css-extract-plugin": "^0.9.0",
"nunjucks": "^3.2.1",
"open": "^7.0.4",
"nunjucks": "^3.2.2",
"open": "^7.1.0",
"postcss-loader": "^3.0.0",
"prettier": "^2.0.5",
"prismjs": "^1.20.0",
"prismjs": "^1.21.0",
"sass": "^1.26.10",
"sass-loader": "^9.0.2",
"sass-loader": "^9.0.3",
"style-loader": "^1.2.1",
"stylelint-codeframe-formatter": "^1.0.4",
"stylelint-webpack-plugin": "^2.1.0",
"terser-webpack-plugin": "^3.0.6",
"webpack": "^5.0.0-beta.21",
"terser-webpack-plugin": "^4.0.0",
"webpack": "^5.0.0-beta.24",
"webpack-bundle-analyzer": "^3.8.0",
"webpack-chain": "^6.5.0",
"webpack-chain": "^6.5.1",
"webpack-dev-server": "^3.11.0",
"webpack-manifest-plugin": "^3.0.0-rc.0",
"webpack-merge": "^5.0.8",
"webpack-merge": "^5.1.1",
"webpackbar": "^4.0.0",
"ws": "^7.3.1"
},
"devDependencies": {
"@pangolinjs/eslint-config": "^4.0.0",
"@pangolinjs/stylelint-config": "^2.0.1",
"ava": "^3.10.1",
"@pangolinjs/eslint-config": "^4.0.1",
"@pangolinjs/stylelint-config": "^2.0.2",
"ava": "^3.11.1",
"babel-eslint": "^10.1.0",
"eslint": "^7.4.0",
"eslint": "^7.6.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-ava": "^10.4.0",
"eslint-plugin-ava": "^10.5.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"eslint-plugin-vue": "^7.0.0-alpha.9",
"eslint-plugin-vue": "^7.0.0-beta.2",
"nyc": "^15.1.0",
"standard-version": "^8.0.0",
"standard-version": "^8.0.2",
"stylelint": "^13.6.1",
"stylelint-order": "^4.1.0",
"stylelint-scss": "^3.18.0"
},
"peerDependencies": {
"eslint": "^7.4.0",
"eslint": "^7.6.0",
"stylelint": "^13.6.1"
},
"engines": {
Expand Down
Loading

0 comments on commit 07c1ba3

Please sign in to comment.