fix: 修改cr的一点小问题
This commit is contained in:
1
.gitignore
vendored
1
.gitignore
vendored
@@ -9,6 +9,7 @@ lerna-debug.log*
|
|||||||
|
|
||||||
node_modules
|
node_modules
|
||||||
dist-ssr
|
dist-ssr
|
||||||
|
dist/cli.js
|
||||||
*.local
|
*.local
|
||||||
|
|
||||||
# Editor directories and files
|
# Editor directories and files
|
||||||
|
|||||||
@@ -17,7 +17,7 @@ export default class MacBuilder implements IBuilder {
|
|||||||
|
|
||||||
const res = await prompts({
|
const res = await prompts({
|
||||||
type: 'confirm',
|
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',
|
name: 'value',
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|||||||
2973
dist/cli.js
vendored
2973
dist/cli.js
vendored
File diff suppressed because it is too large
Load Diff
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "pake-cli",
|
"name": "pake-cli",
|
||||||
"version": "0.0.1",
|
"version": "0.0.2",
|
||||||
"description": "用 Rust 来打包你的 App,底层使用 Tauri,当前支持微信读书、Flomo、Vercel",
|
"description": "用 Rust 来打包你的 App,底层使用 Tauri,当前支持微信读书、Flomo、Vercel",
|
||||||
"bin": {
|
"bin": {
|
||||||
"pake": "./cli.js"
|
"pake": "./cli.js"
|
||||||
@@ -22,7 +22,8 @@
|
|||||||
"build:linux": "npm run tauri build --release",
|
"build:linux": "npm run tauri build --release",
|
||||||
"tauri": "tauri",
|
"tauri": "tauri",
|
||||||
"cli": "rollup -c rollup.config.js --watch",
|
"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",
|
"type": "module",
|
||||||
"exports": "./dist/pake.js",
|
"exports": "./dist/pake.js",
|
||||||
|
|||||||
Reference in New Issue
Block a user