Skip to content

Commit 25cd394

Browse files
committed
chore: minify output files
1 parent e62776e commit 25cd394

File tree

4 files changed

+9
-2
lines changed

4 files changed

+9
-2
lines changed

.vscodeignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ out/**
44
node_modules/**
55
src/**
66
.gitignore
7-
.yarnrc
7+
.github
88
vsc-extension-quickstart.md
99
**/tsconfig.json
1010
**/pnpm-lock.yaml
@@ -14,3 +14,4 @@ vsc-extension-quickstart.md
1414
**/.oxlintrc.json
1515
**/*.map
1616
**/*.ts
17+
milkdown-vscode.gif

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ All notable changes to the "milkdown" extension will be documented in this file.
44

55
Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how to structure this file.
66

7+
## [0.0.20]
8+
9+
- Minify the output files.
10+
711
## [0.0.19]
812

913
- Use crepe to replace the old editor.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"icon": "logo.png",
55
"displayName": "Milkdown",
66
"description": "Edit markdown in a WYSIWYG way, powered by milkdown.",
7-
"version": "0.0.19",
7+
"version": "0.0.20",
88
"engines": {
99
"vscode": "^1.74.0"
1010
},

tsup.config.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ export default defineConfig([
1111
format: ['cjs'],
1212
shims: false,
1313
dts: false,
14+
minify: true,
1415
platform: 'node',
1516
},
1617
{
@@ -23,6 +24,7 @@ export default defineConfig([
2324
format: ['iife'],
2425
shims: false,
2526
dts: false,
27+
minify: true,
2628
platform: 'browser',
2729
},
2830
]);

0 commit comments

Comments
 (0)