Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
lukastaegert committed Jan 19, 2021
1 parent 0619302 commit bc5a186
Show file tree
Hide file tree
Showing 11 changed files with 800 additions and 805 deletions.
29 changes: 1 addition & 28 deletions LICENSE.md
Expand Up @@ -84,33 +84,6 @@ Repository: https://github.com/acornjs/acorn-class-fields
---------------------------------------

## acorn-numeric-separator
License: MIT
By: Adrian Heine
Repository: https://github.com/acornjs/acorn-numeric-separator

> Copyright (C) 2017-2018 by Adrian Heine
>
> Permission is hereby granted, free of charge, to any person obtaining a copy
> of this software and associated documentation files (the "Software"), to deal
> in the Software without restriction, including without limitation the rights
> to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
> copies of the Software, and to permit persons to whom the Software is
> furnished to do so, subject to the following conditions:
>
> The above copyright notice and this permission notice shall be included in
> all copies or substantial portions of the Software.
>
> THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
> IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
> FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
> AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
> LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
> OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
> THE SOFTWARE.
---------------------------------------

## acorn-private-class-elements
License: MIT
By: Adrian Heine
Expand Down Expand Up @@ -172,7 +145,7 @@ Repository: https://github.com/acornjs/acorn.git

> MIT License
>
> Copyright (C) 2012-2018 by various contributors (see AUTHORS)
> Copyright (C) 2012-2020 by various contributors (see AUTHORS)
>
> Permission is hereby granted, free of charge, to any person obtaining a copy
> of this software and associated documentation files (the "Software"), to deal
Expand Down
712 changes: 357 additions & 355 deletions package-lock.json

Large diffs are not rendered by default.

30 changes: 13 additions & 17 deletions package.json
Expand Up @@ -62,48 +62,47 @@
"@rollup/plugin-buble": "^0.21.3",
"@rollup/plugin-commonjs": "^17.0.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^10.0.0",
"@rollup/plugin-node-resolve": "^11.1.0",
"@rollup/plugin-replace": "^2.3.4",
"@types/micromatch": "^4.0.1",
"@types/node": "^10.17.49",
"@types/node": "^10.17.51",
"@types/require-relative": "^0.8.0",
"@types/signal-exit": "^3.0.0",
"@types/yargs-parser": "^15.0.0",
"@types/yargs-parser": "^20.2.0",
"acorn": "^8.0.4",
"acorn-class-fields": "^0.3.7",
"acorn-jsx": "^5.3.1",
"acorn-numeric-separator": "^0.3.6",
"acorn-static-class-features": "^0.2.4",
"acorn-walk": "^8.0.0",
"acorn-walk": "^8.0.1",
"buble": "^0.20.0",
"chokidar": "^3.4.3",
"codecov": "^3.8.1",
"colorette": "^1.2.1",
"core-js": "^3.8.1",
"core-js": "^3.8.2",
"date-time": "^3.1.0",
"es5-shim": "^4.5.14",
"es5-shim": "^4.5.15",
"es6-shim": "^0.35.6",
"eslint": "^7.15.0",
"eslint": "^7.18.0",
"eslint-plugin-import": "^2.22.1",
"execa": "^5.0.0",
"fixturify": "^2.1.0",
"hash.js": "^1.1.7",
"husky": "^4.3.6",
"husky": "^4.3.8",
"is-reference": "^1.2.1",
"lint-staged": "^10.5.3",
"locate-character": "^2.0.5",
"magic-string": "^0.25.7",
"markdownlint-cli": "^0.25.0",
"markdownlint-cli": "^0.26.0",
"micromatch": "^4.0.2",
"mocha": "^8.2.1",
"node-fetch": "^2.6.1",
"nyc": "^15.1.0",
"prettier": "^2.2.1",
"pretty-bytes": "^5.4.1",
"pretty-bytes": "^5.5.0",
"pretty-ms": "^7.0.1",
"require-relative": "^0.8.7",
"requirejs": "^2.3.6",
"rollup": "^2.34.2",
"rollup": "^2.36.2",
"rollup-plugin-license": "^2.2.0",
"rollup-plugin-string": "^3.0.0",
"rollup-plugin-terser": "^7.0.2",
Expand All @@ -116,9 +115,9 @@
"source-map": "^0.7.3",
"source-map-support": "^0.5.19",
"sourcemap-codec": "^1.4.8",
"systemjs": "^6.8.1",
"systemjs": "^6.8.3",
"terser": "^5.5.1",
"tslib": "^2.0.3",
"tslib": "^2.1.0",
"tslint": "^6.1.3",
"typescript": "^4.1.3",
"url-parse": "^1.4.7",
Expand All @@ -142,8 +141,5 @@
"default": "./dist/es/rollup.browser.js"
},
"./dist/": "./dist/"
},
"dependencies": {
"fsevents": "~2.1.2"
}
}
9 changes: 1 addition & 8 deletions rollup.config.js
Expand Up @@ -49,14 +49,7 @@ const moduleAliases = {
resolve: ['.js', '.json', '.md'],
entries: [
{ find: 'help.md', replacement: path.resolve('cli/help.md') },
{ find: 'package.json', replacement: path.resolve('package.json') },
{
find: 'acorn-numeric-separator',
replacement: path.join(
__dirname,
'node_modules/acorn-numeric-separator/dist/acorn-numeric-separator.js'
)
}
{ find: 'package.json', replacement: path.resolve('package.json') }
]
};

Expand Down
2 changes: 0 additions & 2 deletions src/utils/options/normalizeInputOptions.ts
@@ -1,5 +1,4 @@
import injectClassFields from 'acorn-class-fields';
import injectNumericSeparator from 'acorn-numeric-separator';
import injectStaticClassFeatures from 'acorn-static-class-features';
import {
ExternalOption,
Expand Down Expand Up @@ -101,7 +100,6 @@ const getAcorn = (config: GenericConfigObject): acorn.Options => ({
const getAcornInjectPlugins = (config: GenericConfigObject): Function[] => [
injectClassFields,
injectStaticClassFeatures,
injectNumericSeparator,
...(ensureArray(config.acornInjectPlugins) as any)
];

Expand Down
4 changes: 1 addition & 3 deletions test/chunking-form/samples/preserve-modules-root/_config.js
Expand Up @@ -8,9 +8,7 @@ module.exports = {
input: ['src/under-build.js', 'src/below/module.js'],
plugins: [
resolve({
customResolveOptions: {
moduleDirectory: ['custom_modules']
}
moduleDirectories: ['custom_modules']
}),
commonjs()
],
Expand Down
1 change: 1 addition & 0 deletions test/cli/samples/watch/close-stdin/_config.js
@@ -1,4 +1,5 @@
module.exports = {
solo: true,
command: 'node wrapper.js main.js --watch --format es --file _actual/out.js',
description: 'closes the watcher when stdin closes'
};

0 comments on commit bc5a186

Please sign in to comment.