Skip to content
This repository has been archived by the owner on Oct 17, 2023. It is now read-only.

Commit

Permalink
yarn upgrade
Browse files Browse the repository at this point in the history
  • Loading branch information
thecotne committed Oct 25, 2019
1 parent 02b3c05 commit 2aad53c
Show file tree
Hide file tree
Showing 3 changed files with 3,109 additions and 2,741 deletions.
42 changes: 21 additions & 21 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,29 +36,29 @@
}
},
"dependencies": {
"glob": "^7.1.3"
"glob": "^7.1.5"
},
"devDependencies": {
"@babel/cli": "^7.1.2",
"@babel/core": "^7.1.2",
"@babel/preset-env": "^7.1.0",
"@babel/register": "^7.0.0",
"babel-eslint": "^10.0.1",
"babel-plugin-add-module-exports": "^1.0.0",
"babel-plugin-istanbul": "^5.1.0",
"coveralls": "^3.0.2",
"cross-env": "^5.2.0",
"cz-conventional-changelog": "^2.1.0",
"eslint": "^5.8.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^8.0.0",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"jasmine": "^3.3.0",
"mock-fs": "^4.7.0",
"nyc": "^13.1.0",
"semantic-release": "^15.10.6"
"@babel/cli": "^7.6.4",
"@babel/core": "^7.6.4",
"@babel/preset-env": "^7.6.3",
"@babel/register": "^7.6.2",
"babel-eslint": "^10.0.3",
"babel-plugin-add-module-exports": "^1.0.2",
"babel-plugin-istanbul": "^5.2.0",
"coveralls": "^3.0.7",
"cross-env": "^6.0.3",
"cz-conventional-changelog": "^3.0.2",
"eslint": "^6.5.1",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"jasmine": "^3.5.0",
"mock-fs": "^4.10.2",
"nyc": "^14.1.1",
"semantic-release": "^15.13.27"
},
"nyc": {
"include": [
Expand Down
14 changes: 7 additions & 7 deletions spec/index.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ describe('entry', () => {
})

var expectedResult = {
'main': 'src/main.entry.js',
'vendor': 'src/vendor.entry.js'
main: 'src/main.entry.js',
vendor: 'src/vendor.entry.js'
}

var result = entry('src/*.entry.js')
Expand All @@ -38,9 +38,9 @@ describe('entry', () => {
})

var expectedResult = {
'main': 'src/main.entry.js',
'vendor': 'src/vendor.entry.js',
'bar': 'src/foo/bar.js'
main: 'src/main.entry.js',
vendor: 'src/vendor.entry.js',
bar: 'src/foo/bar.js'
}

var result = entry('src/*.entry.js', 'src/foo/*.js')
Expand Down Expand Up @@ -105,8 +105,8 @@ describe('entry.basePath', () => {
})

var expectedResult = {
'main': 'src/main.entry.js',
'vendor': 'src/vendor.entry.js',
main: 'src/main.entry.js',
vendor: 'src/vendor.entry.js',
'admin/vendor': 'src/admin/vendor.foo.entry.js'
}

Expand Down
Loading

0 comments on commit 2aad53c

Please sign in to comment.