fix(cli): package.json missing dependency when create ui (#1339)

This commit is contained in:
xiaoy 2024-01-27 09:58:20 +08:00 committed by GitHub
parent 582ce09db2
commit 8985b95a84
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 11 additions and 4 deletions

View File

@ -1,15 +1,22 @@
{
"name": "@opentiny/vue-[[NAME]]",
"version": "5.[[MINOR]].0",
"version": "3.[[MINOR]].0",
"description": "",
"main": "lib/index.js",
"module": "index.ts",
"sideEffects": false,
"type": "module",
"scripts": {
"build": "pnpm -w build:ui $npm_package_name",
"//postversion": "pnpm build"
},
"devDependencies": {
"@opentiny-internal/vue-test-utils": "workspace:*",
"vitest": "^0.31.0"
},
"dependencies": {
"@opentiny/vue-renderless": "~5.[[MINOR]].0",
"@opentiny/vue-theme": "~5.[[MINOR]].0",
"@opentiny/vue-common": "~5.[[MINOR]].0"
"@opentiny/vue-renderless": "workspace:~",
"@opentiny/vue-common": "workspace:~"
},
"license": "MIT"
}