fix: 修改cr的一点小问题

This commit is contained in:
volare
2022-11-24 22:20:44 +08:00
parent 75aa41c31f
commit c88b31d278
4 changed files with 1492 additions and 1489 deletions

1
.gitignore vendored
View File

@@ -9,6 +9,7 @@ lerna-debug.log*
node_modules
dist-ssr
dist/cli.js
*.local
# Editor directories and files

View File

@@ -17,7 +17,7 @@ export default class MacBuilder implements IBuilder {
const res = await prompts({
type: 'confirm',
message: 'Detect you have not installed Rust, install it now?',
message: 'We detected that you have not installed Rust. Install it now?',
name: 'value',
});

2973
dist/cli.js vendored

File diff suppressed because it is too large Load Diff

View File

@@ -1,6 +1,6 @@
{
"name": "pake-cli",
"version": "0.0.1",
"version": "0.0.2",
"description": "用 Rust 来打包你的 App底层使用 Tauri当前支持微信读书、Flomo、Vercel",
"bin": {
"pake": "./cli.js"
@@ -22,7 +22,8 @@
"build:linux": "npm run tauri build --release",
"tauri": "tauri",
"cli": "rollup -c rollup.config.js --watch",
"cli:build": "rollup -c rollup.config.js"
"cli:build": "rollup -c rollup.config.js",
"cli:publish": "npm run cli:build && npm publish"
},
"type": "module",
"exports": "./dist/pake.js",