Skip to content

Commit

Permalink
Update changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
lukastaegert committed Mar 6, 2020
1 parent 1cece1c commit eddb824
Show file tree
Hide file tree
Showing 8 changed files with 221 additions and 144 deletions.
330 changes: 204 additions & 126 deletions package-lock.json

Large diffs are not rendered by default.

24 changes: 12 additions & 12 deletions package.json
Expand Up @@ -71,11 +71,11 @@
"@rollup/plugin-replace": "^2.3.1",
"@types/micromatch": "^4.0.1",
"@types/minimist": "^1.2.0",
"@types/node": "^13.7.4",
"acorn": "^7.1.0",
"@types/node": "^13.7.7",
"acorn": "^7.1.1",
"acorn-export-ns-from": "^0.1.0",
"acorn-import-meta": "^1.0.0",
"acorn-jsx": "^5.1.0",
"acorn-jsx": "^5.2.0",
"acorn-walk": "^7.1.1",
"buble": "^0.19.8",
"chokidar": "^3.3.1",
Expand All @@ -90,25 +90,25 @@
"eslint": "^6.8.0",
"eslint-plugin-import": "^2.20.1",
"execa": "^4.0.0",
"fixturify": "^1.2.0",
"fixturify": "^2.1.0",
"hash.js": "^1.1.7",
"husky": "^4.2.3",
"is-reference": "^1.1.4",
"lint-staged": "^10.0.7",
"lint-staged": "^10.0.8",
"locate-character": "^2.0.5",
"magic-string": "^0.25.6",
"markdownlint-cli": "^0.22.0",
"micromatch": "^4.0.2",
"minimist": "^1.2.0",
"mocha": "^7.0.1",
"mocha": "^7.1.0",
"node-fetch": "^2.6.0",
"nyc": "^15.0.0",
"prettier": "^1.19.1",
"pretty-bytes": "^5.3.0",
"pretty-ms": "^6.0.0",
"pretty-ms": "^6.0.1",
"require-relative": "^0.8.7",
"requirejs": "^2.3.6",
"rollup": "^1.31.1",
"rollup": "^1.32.1",
"rollup-plugin-license": "^0.13.0",
"rollup-plugin-string": "^3.0.0",
"rollup-plugin-terser": "^5.2.0",
Expand All @@ -120,11 +120,11 @@
"source-map": "^0.7.3",
"source-map-support": "^0.5.16",
"sourcemap-codec": "^1.4.8",
"systemjs": "^6.2.3",
"terser": "^4.6.3",
"tslib": "^1.11.0",
"systemjs": "^6.2.5",
"terser": "^4.6.6",
"tslib": "^1.11.1",
"tslint": "^6.0.0",
"typescript": "^3.8.2",
"typescript": "^3.8.3",
"url-parse": "^1.4.7"
},
"files": [
Expand Down
2 changes: 1 addition & 1 deletion test/cli/samples/format-aliases/_expected/amd.js
@@ -1,6 +1,6 @@
define(['exports', 'external'], function (exports, external) { 'use strict';

external = external && external.hasOwnProperty('default') ? external['default'] : external;
external = external && Object.prototype.hasOwnProperty.call(external, 'default') ? external['default'] : external;

console.log('main');

Expand Down
2 changes: 1 addition & 1 deletion test/cli/samples/format-aliases/_expected/iife.js
@@ -1,7 +1,7 @@
var bundle = (function (exports, external) {
'use strict';

external = external && external.hasOwnProperty('default') ? external['default'] : external;
external = external && Object.prototype.hasOwnProperty.call(external, 'default') ? external['default'] : external;

console.log('main');

Expand Down
2 changes: 1 addition & 1 deletion test/cli/samples/format-aliases/_expected/umd.js
Expand Up @@ -4,7 +4,7 @@
(global = global || self, factory(global.bundle = {}, global.external));
}(this, (function (exports, external) { 'use strict';

external = external && external.hasOwnProperty('default') ? external['default'] : external;
external = external && Object.prototype.hasOwnProperty.call(external, 'default') ? external['default'] : external;

console.log('main');

Expand Down
2 changes: 1 addition & 1 deletion test/cli/samples/plugin/advanced/rollup.config.js
@@ -1,4 +1,4 @@
const buble = require('rollup-plugin-buble');
const buble = require('@rollup/plugin-buble');

export default {
input: 'main.js',
Expand Down
2 changes: 1 addition & 1 deletion test/cli/samples/plugin/basic/_config.js
@@ -1,4 +1,4 @@
module.exports = {
description: 'basic CLI --plugin functionality',
command: `rollup main.js -f cjs --plugin rollup-plugin-buble`
command: `rollup main.js -f cjs --plugin @rollup/plugin-buble`
};
1 change: 0 additions & 1 deletion typings/declarations.d.ts
Expand Up @@ -7,7 +7,6 @@ declare module 'help.md' {

// external libs
declare module 'pretty-bytes';
declare module 'rollup-plugin-buble';
declare module 'signal-exit';
declare module 'date-time';
declare module 'locate-character';
Expand Down

0 comments on commit eddb824

Please sign in to comment.