Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
},
"devDependencies": {
"@ava/babel": "2.0.0",
"@rollup/plugin-typescript": "^8.5.0",
"@rollup/plugin-typescript": "^9.0.1",
"@types/conventional-commits-parser": "^3.0.2",
"@types/node": "14.18.30",
"@types/semver": "^7.3.7",
Expand Down
6 changes: 3 additions & 3 deletions packages/alias/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -62,10 +62,10 @@
"slash": "^4.0.0"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^14.1.0",
"@rollup/plugin-typescript": "^8.5.0",
"@rollup/plugin-node-resolve": "^15.0.0",
"@rollup/plugin-typescript": "^9.0.1",
"del-cli": "^5.0.0",
"rollup": "^3.0.0-7",
"rollup": "^3.2.3",
"typescript": "^4.8.3"
},
"types": "./types/index.d.ts",
Expand Down
6 changes: 5 additions & 1 deletion packages/alias/test/test.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -455,7 +455,7 @@ test('Forwards isEntry and custom options to a custom resolver', (t) => {
{
source: 'nonEntry',
importer: '/src/importer.js',
options: { isEntry: false, custom: { test: 42 } }
options: { assertions: {}, isEntry: false, custom: { test: 42 } }
}
]
).then((result) => {
Expand All @@ -464,6 +464,7 @@ test('Forwards isEntry and custom options to a custom resolver', (t) => {
'entry-point',
'/src/importer.js',
{
assertions: {},
custom: void 0,
isEntry: true
}
Expand All @@ -472,6 +473,7 @@ test('Forwards isEntry and custom options to a custom resolver', (t) => {
'non-entry-point',
'/src/importer.js',
{
assertions: {},
custom: { test: 42 },
isEntry: false
}
Expand Down Expand Up @@ -512,6 +514,7 @@ test('Forwards isEntry and custom options to other plugins', (t) => {
'entry-point',
'/src/importer.js',
{
assertions: {},
custom: void 0,
isEntry: true
}
Expand All @@ -520,6 +523,7 @@ test('Forwards isEntry and custom options to other plugins', (t) => {
'non-entry-point',
'/src/importer.js',
{
assertions: {},
custom: { test: 42 },
isEntry: false
}
Expand Down
6 changes: 3 additions & 3 deletions packages/auto-install/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -61,11 +61,11 @@
}
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^14.1.0",
"@rollup/plugin-typescript": "^8.5.0",
"@rollup/plugin-node-resolve": "^15.0.0",
"@rollup/plugin-typescript": "^9.0.1",
"del": "^6.1.1",
"node-noop": "^1.0.0",
"rollup": "^3.0.0-7",
"rollup": "^3.2.3",
"typescript": "^4.8.3"
},
"types": "./types/index.d.ts",
Expand Down
8 changes: 4 additions & 4 deletions packages/babel/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@
},
"dependencies": {
"@babel/helper-module-imports": "^7.18.6",
"@rollup/pluginutils": "^4.2.1"
"@rollup/pluginutils": "^5.0.1"
},
"devDependencies": {
"@babel/core": "^7.19.1",
Expand All @@ -75,10 +75,10 @@
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.19.1",
"@babel/preset-env": "^7.19.1",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^14.1.0",
"@rollup/plugin-json": "^5.0.0",
"@rollup/plugin-node-resolve": "^15.0.0",
"@types/babel__core": "^7.1.9",
"rollup": "^3.0.0-7",
"rollup": "^3.2.3",
"source-map": "^0.7.4"
},
"types": "./types/index.d.ts",
Expand Down
9 changes: 1 addition & 8 deletions packages/babel/test/as-output-plugin.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -87,13 +87,10 @@ test("allows transform-runtime to be used with `useESModules: false` (the defaul
`'use strict';

var _createClass = require("@babel/runtime/helpers/createClass");

var _classCallCheck = require("@babel/runtime/helpers/classCallCheck");

var Foo = /*#__PURE__*/_createClass(function Foo() {
_classCallCheck(this, Foo);
});

module.exports = Foo;
`
);
Expand All @@ -112,11 +109,9 @@ test("allows transform-runtime to be used with `useESModules: true` and `format:
code,
`import _createClass from "@babel/runtime/helpers/esm/createClass";
import _classCallCheck from "@babel/runtime/helpers/esm/classCallCheck";

var Foo = /*#__PURE__*/_createClass(function Foo() {
_classCallCheck(this, Foo);
});

export { Foo as default };
`
);
Expand Down Expand Up @@ -227,14 +222,13 @@ test('transforms all chunks in a code-splitting setup', async (t) => {
t.deepEqual(
output.map(({ code }) => code),
[
`import('./dep-0fdca0d5.js').then(function (result) {
`import('./dep-20aaf50b.js').then(function (result) {
return console.log(result);
});
`,
`var dep = function dep() {
return 42;
};

export { dep as default };
`
]
Expand Down Expand Up @@ -269,7 +263,6 @@ console.log(getResult(value));
`var getResult = function getResult(value) {
return value + 1;
};

export { getResult as default };
`
]
Expand Down
2 changes: 1 addition & 1 deletion packages/beep/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
}
},
"devDependencies": {
"rollup": "^3.0.0-7",
"rollup": "^3.2.3",
"strip-ansi": "^7.0.1"
},
"types": "types/index.d.ts",
Expand Down
6 changes: 3 additions & 3 deletions packages/buble/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -61,14 +61,14 @@
}
},
"dependencies": {
"@rollup/pluginutils": "^4.2.1",
"@rollup/pluginutils": "^5.0.1",
"@types/buble": "^0.19.2",
"buble": "^0.20.0"
},
"devDependencies": {
"@rollup/plugin-typescript": "^8.5.0",
"@rollup/plugin-typescript": "^9.0.1",
"del-cli": "^5.0.0",
"rollup": "^3.0.0-7",
"rollup": "^3.2.3",
"source-map": "^0.7.4",
"typescript": "^4.8.3"
},
Expand Down
6 changes: 3 additions & 3 deletions packages/commonjs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -62,16 +62,16 @@
}
},
"dependencies": {
"@rollup/pluginutils": "^4.2.1",
"@rollup/pluginutils": "^5.0.1",
"commondir": "^1.0.1",
"estree-walker": "^2.0.2",
"glob": "^8.0.3",
"is-reference": "1.2.1",
"magic-string": "^0.26.4"
},
"devDependencies": {
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^14.1.0",
"@rollup/plugin-json": "^5.0.0",
"@rollup/plugin-node-resolve": "^15.0.0",
"locate-character": "^2.0.5",
"require-relative": "^0.8.7",
"rollup": "3.0.0-7",
Expand Down
6 changes: 3 additions & 3 deletions packages/data-uri/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -61,11 +61,11 @@
}
},
"dependencies": {
"@rollup/pluginutils": "^4.2.1"
"@rollup/pluginutils": "^5.0.1"
},
"devDependencies": {
"@rollup/plugin-typescript": "^8.5.0",
"rollup": "^3.0.0-7",
"@rollup/plugin-typescript": "^9.0.1",
"rollup": "^3.2.3",
"typescript": "^4.8.3"
},
"types": "./types/index.d.ts",
Expand Down
4 changes: 2 additions & 2 deletions packages/dsv/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -49,14 +49,14 @@
}
},
"dependencies": {
"@rollup/pluginutils": "^4.2.1",
"@rollup/pluginutils": "^5.0.1",
"@types/d3-dsv": "^3.0.0",
"d3-dsv": "2.0.0",
"tosource": "^2.0.0-alpha.3"
},
"devDependencies": {
"del-cli": "^5.0.0",
"rollup": "^3.0.0-7"
"rollup": "^3.2.3"
},
"types": "./types/index.d.ts",
"ava": {
Expand Down
4 changes: 2 additions & 2 deletions packages/dynamic-import-vars/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -62,15 +62,15 @@
}
},
"dependencies": {
"@rollup/pluginutils": "^4.2.1",
"@rollup/pluginutils": "^5.0.1",
"estree-walker": "^2.0.2",
"fast-glob": "^3.2.12",
"magic-string": "^0.26.4"
},
"devDependencies": {
"acorn": "^8.8.0",
"prettier": "^2.7.1",
"rollup": "^3.0.0-7"
"rollup": "^3.2.3"
},
"types": "./types/index.d.ts",
"ava": {
Expand Down
8 changes: 4 additions & 4 deletions packages/eslint/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -62,14 +62,14 @@
}
},
"dependencies": {
"@rollup/pluginutils": "^4.2.1",
"@rollup/pluginutils": "^5.0.1",
"eslint": "^8.24.0"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^14.1.0",
"@rollup/plugin-typescript": "^8.5.0",
"@rollup/plugin-node-resolve": "^15.0.0",
"@rollup/plugin-typescript": "^9.0.1",
"@types/eslint": "^8.4.6",
"rollup": "^3.0.0-7",
"rollup": "^3.2.3",
"typescript": "^4.8.3"
},
"types": "./types/index.d.ts",
Expand Down
6 changes: 3 additions & 3 deletions packages/graphql/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -63,13 +63,13 @@
}
},
"dependencies": {
"@rollup/pluginutils": "^4.2.1",
"@rollup/pluginutils": "^5.0.1",
"graphql-tag": "^2.12.6"
},
"devDependencies": {
"@rollup/plugin-buble": "^0.21.3",
"@rollup/plugin-buble": "^1.0.0",
"graphql": "^16.6.0",
"rollup": "^3.0.0-7"
"rollup": "^3.2.3"
},
"types": "./types/index.d.ts",
"ava": {
Expand Down
4 changes: 2 additions & 2 deletions packages/html/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -58,9 +58,9 @@
}
},
"devDependencies": {
"@rollup/plugin-typescript": "^8.5.0",
"@rollup/plugin-typescript": "^9.0.1",
"postcss": "^8.4.16",
"rollup": "^3.0.0-7",
"rollup": "^3.2.3",
"rollup-plugin-postcss": "^4.0.2",
"typescript": "^4.8.3"
},
Expand Down
6 changes: 3 additions & 3 deletions packages/image/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -58,12 +58,12 @@
}
},
"dependencies": {
"@rollup/pluginutils": "^4.2.1",
"@rollup/pluginutils": "^5.0.1",
"mini-svg-data-uri": "^1.4.4"
},
"devDependencies": {
"@rollup/plugin-buble": "^0.21.3",
"rollup": "^3.0.0-7"
"@rollup/plugin-buble": "^1.0.0",
"rollup": "^3.2.3"
},
"types": "./types/index.d.ts",
"ava": {
Expand Down
6 changes: 3 additions & 3 deletions packages/inject/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -61,15 +61,15 @@
}
},
"dependencies": {
"@rollup/pluginutils": "^4.2.1",
"@rollup/pluginutils": "^5.0.1",
"estree-walker": "^2.0.2",
"magic-string": "^0.26.4"
},
"devDependencies": {
"@rollup/plugin-buble": "^0.21.3",
"@rollup/plugin-buble": "^1.0.0",
"del-cli": "^5.0.0",
"locate-character": "^2.0.5",
"rollup": "^3.0.0-7",
"rollup": "^3.2.3",
"source-map": "^0.7.4",
"typescript": "^4.8.3"
},
Expand Down
8 changes: 4 additions & 4 deletions packages/json/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -61,12 +61,12 @@
}
},
"dependencies": {
"@rollup/pluginutils": "^4.2.1"
"@rollup/pluginutils": "^5.0.1"
},
"devDependencies": {
"@rollup/plugin-buble": "^0.21.0",
"@rollup/plugin-node-resolve": "^14.1.0",
"rollup": "^3.0.0-7",
"@rollup/plugin-buble": "^1.0.0",
"@rollup/plugin-node-resolve": "^15.0.0",
"rollup": "^3.2.3",
"source-map-support": "^0.5.21"
},
"types": "./types/index.d.ts",
Expand Down
6 changes: 3 additions & 3 deletions packages/legacy/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -56,12 +56,12 @@
}
},
"dependencies": {
"@rollup/pluginutils": "^4.2.1"
"@rollup/pluginutils": "^5.0.1"
},
"devDependencies": {
"@rollup/plugin-buble": "^0.21.3",
"@rollup/plugin-buble": "^1.0.0",
"del-cli": "^5.0.0",
"rollup": "^3.0.0-7"
"rollup": "^3.2.3"
},
"types": "./types/index.d.ts",
"ava": {
Expand Down
4 changes: 2 additions & 2 deletions packages/multi-entry/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -60,11 +60,11 @@
}
},
"dependencies": {
"@rollup/plugin-virtual": "^2.0.3",
"@rollup/plugin-virtual": "^3.0.0",
"matched": "^5.0.1"
},
"devDependencies": {
"rollup": "^3.0.0-7"
"rollup": "^3.2.3"
},
"types": "./types/index.d.ts",
"ava": {
Expand Down
Loading