Skip to content

Commit eb8f320

Browse files
committed
remove unused dependencies
1 parent f0d0f45 commit eb8f320

File tree

3 files changed

+3
-11
lines changed

3 files changed

+3
-11
lines changed

package.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "rollup-plugin-copy-merge",
33
"description": "Copy & Merge files and folders using Rollup",
4-
"version": "0.3.1",
4+
"version": "0.3.2",
55
"author": "syJSdev <whitedragon226@gmail.com>",
66
"repository": "syJSdev/rollup-plugin-copy-merge",
77
"main": "dist/index.commonjs.js",
@@ -21,7 +21,6 @@
2121
"postpack": "pinst --enable"
2222
},
2323
"dependencies": {
24-
"@types/fs-extra": "^9.0.13",
2524
"colorette": "^2.0.17",
2625
"fs-extra": "^10.1.0",
2726
"globby": "11.0.4",

rollup.config.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,12 @@ export default {
1212
external: [...Object.keys(pkg.dependencies), 'path'],
1313
output: [
1414
{
15-
file: 'dist/index.commonjs.js',
15+
file: pkg.main,
1616
format: 'commonjs',
1717
exports: 'auto'
1818
},
1919
{
20-
file: 'dist/index.module.js',
20+
file: pkg.module,
2121
format: 'module',
2222
exports: 'auto'
2323
}

yarn.lock

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1402,13 +1402,6 @@
14021402
resolved "https://registry.yarnpkg.com/@types/estree/-/estree-0.0.39.tgz#e177e699ee1b8c22d23174caaa7422644389509f"
14031403
integrity sha512-EYNwp3bU+98cpU4lAWYYL7Zz+2gryWH1qbdDTidVd6hkiR6weksdbMadyXKXNPEkQFhXM+hVO9ZygomHXp+AIw==
14041404

1405-
"@types/fs-extra@^9.0.13":
1406-
version "9.0.13"
1407-
resolved "https://registry.yarnpkg.com/@types/fs-extra/-/fs-extra-9.0.13.tgz#7594fbae04fe7f1918ce8b3d213f74ff44ac1f45"
1408-
integrity sha512-nEnwB++1u5lVDM2UI4c1+5R+FYaKfaAzS4OococimjVm3nQw3TuzH5UNsocrcTBbhnerblyHj4A49qXbIiZdpA==
1409-
dependencies:
1410-
"@types/node" "*"
1411-
14121405
"@types/graceful-fs@^4.1.3":
14131406
version "4.1.5"
14141407
resolved "https://registry.yarnpkg.com/@types/graceful-fs/-/graceful-fs-4.1.5.tgz#21ffba0d98da4350db64891f92a9e5db3cdb4e15"

0 commit comments

Comments
 (0)