Skip to content

Commit

Permalink
Update to [email protected] maintaining legacy IE8 support
Browse files Browse the repository at this point in the history
We no longer need to pin `[email protected]` since `gulp-better-rollup` has been removed

Changes: rollup/rollup@v0.56.5...v0.59.4
  • Loading branch information
colinrotherham committed Dec 20, 2022
1 parent 3641229 commit 721b159
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 11 deletions.
20 changes: 14 additions & 6 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@
"postcss-unmq": "^1.0.2",
"postcss-unopacity": "^2.0.0",
"postcss-unrgba": "^1.1.1",
"rollup": "0.56.5",
"rollup": "0.59.4",
"sassdoc": "^2.7.4",
"slash": "^5.0.0",
"uglify-js": "^3.17.4",
Expand Down
8 changes: 4 additions & 4 deletions package.json.unit.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@ const packageJson = require('./package.json')

describe('because rollup 0.60 drops support for Internet Explorer 8', () => {
describe('rollup', () => {
it('should be pinned to 0.56.5 in package.json', () => {
expect(packageJson.dependencies.rollup).toEqual('0.56.5')
it('should be pinned to 0.59.4 in package.json', () => {
expect(packageJson.dependencies.rollup).toEqual('0.59.4')
})

it('should be pinned to 0.56.5 in package-lock.json', () => {
expect(packageLockJson.packages['node_modules/rollup'].version).toEqual('0.56.5')
it('should be pinned to 0.59.4 in package-lock.json', () => {
expect(packageLockJson.packages['node_modules/rollup'].version).toEqual('0.59.4')
})
})
})

0 comments on commit 721b159

Please sign in to comment.