Skip to content

Commit

Permalink
Merge pull request #4 from terwer/release-please--branches--main--com…
Browse files Browse the repository at this point in the history
…ponents--release-please-action

chore(main): release 1.0.0
  • Loading branch information
terwer committed Jun 4, 2023
2 parents 5520043 + b229181 commit 785dd05
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 3 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
@@ -0,0 +1,7 @@
# Changelog

## 1.0.0 (2023-06-04)
### Features
* 代码块美化第一个版本 ([c5c5864](https://github.com/terwer/siyuan-plugin-code-block/commit/c5c58647d923a3a9f6122741284de1aa412415d1))
* 代码块美化第一个版本完成 ([4182fdc](https://github.com/terwer/siyuan-plugin-code-block/commit/4182fdc14825b73d1944bc6039490c91fd5be4b8))
* 代码块美化第一个版本完成-手动打包 ([55b3767](https://github.com/terwer/siyuan-plugin-code-block/commit/55b3767f7fb2390781353fb02fa7839da15fa35e))
2 changes: 1 addition & 1 deletion package.json
@@ -1,6 +1,6 @@
{
"name": "siyuan-plugin-custom-slug",
"version": "0.1.0",
"version": "1.0.0",
"type": "module",
"description": "I heard give me a new name, it will be easier for you to find me",
"repository": "terwer/siyuan-plugin-custom-slug",
Expand Down
2 changes: 1 addition & 1 deletion plugin.json
Expand Up @@ -2,7 +2,7 @@
"name": "siyuan-plugin-code-block",
"author": "terwer",
"url": "https://github.com/terwer/siyuan-plugin-code-block",
"version": "0.0.1",
"version": "1.0.0",
"minAppVersion": "2.8.9",
"backends": [
"windows",
Expand Down
9 changes: 8 additions & 1 deletion vite.config.ts
Expand Up @@ -3,6 +3,7 @@ import { defineConfig, loadEnv } from "vite"
import minimist from "minimist"
import { viteStaticCopy } from "vite-plugin-static-copy"
import livereload from "rollup-plugin-livereload"
import zipPack from "vite-plugin-zip-pack"
import fg from "fast-glob"

const args = minimist(process.argv.slice(2))
Expand Down Expand Up @@ -90,7 +91,13 @@ export default defineConfig({
},
},
]
: []),
: [
zipPack({
inDir: "./dist",
outDir: "./",
outFileName: "package.zip",
}),
]),
],

// make sure to externalize deps that shouldn't be bundled
Expand Down

0 comments on commit 785dd05

Please sign in to comment.