Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(plugin-generator): 修改 morjs 依赖为 * 以处理无 beta 版本引发的 install 报错 #21

Merged
merged 2 commits into from
Apr 18, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -27,13 +27,13 @@
"dev": "mor compile --watch"
},
"dependencies": {
"@morjs/core": "beta"
"@morjs/core": "*"
},
"peerDependencies": {
"tslib": "2"
},
"devDependencies": {
"@morjs/cli": "beta",
"@morjs/cli": "*",
"@commitlint/cli": "^17.0.3",
"@commitlint/config-conventional": "^13.2.0",
"@mini-types/alipay": "^2.0.0",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,13 +27,13 @@
"dev": "mor compile --watch"
},
"dependencies": {
"@morjs/core": "beta"
"@morjs/core": "*"
},
"peerDependencies": {
"tslib": "2"
},
"devDependencies": {
"@morjs/cli": "beta",
"@morjs/cli": "*",
"@commitlint/cli": "^17.0.3",
"@commitlint/config-conventional": "^13.2.0",
"@mini-types/alipay": "^2.0.0",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@ v14
```diff
{
"dependencies": {
+ "@morjs/core": "^2.3.0",
+ "@morjs/core": "*",
},
"devDependencies": {
+ "@morjs/cli": "^2.3.0",
+ "@morjs/cli": "*",
}
}
```
Expand Down