Skip to content

Commit

Permalink
[md]Change rollup-plugin-md-ts dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
dufu1991 committed Dec 11, 2024
1 parent 3bba24c commit 3bccfbc
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion packages/rollup-plugin-md-ts/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,14 +40,14 @@
"devDependencies": {
"@eslint/js": "^9.16.0",
"@rollup/plugin-node-resolve": "^15.3.0",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^12.1.1",
"assert": "^2.1.0",
"eslint": "^9.16.0",
"eslint-config-prettier": "^9.1.0",
"fs": "^0.0.1-security",
"globals": "^15.13.0",
"mocha": "^11.0.1",
"rollup-plugin-uglify": "^6.0.4",
"source-map-support": "^0.5.21",
"tslib": "^2.8.1",
"typescript": "^5.7.2",
Expand Down
4 changes: 2 additions & 2 deletions packages/rollup-plugin-md-ts/rollup.config.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import json from '@rollup/plugin-json';
import typescript from '@rollup/plugin-typescript';
import { uglify } from 'rollup-plugin-uglify';
import terser from '@rollup/plugin-terser';
import { readFileSync } from 'fs';
const pkg = JSON.parse(readFileSync('./package.json', 'utf8'));
const external = Object.keys(pkg.dependencies);
Expand All @@ -25,6 +25,6 @@ export default {
tsconfig: './tsconfig.json'
}),
json(),
uglify()
terser()
]
};

0 comments on commit 3bccfbc

Please sign in to comment.