Skip to content

Commit e571e5d

Browse files
committed
release: v2.3.0-beta.1
1 parent 6013401 commit e571e5d

File tree

8 files changed

+584
-12
lines changed

8 files changed

+584
-12
lines changed

.eslintignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,5 @@ auto-imports.d.ts
22
node_modules
33
dist
44
components.d.ts
5-
/scripts
65
/types
76
.gitignore

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# [2.3.0-beta.1](https://github.com/RennCheung/codemirror-editor-vue3/compare/v2.3.0-beta2...v2.3.0-beta.1) (2023-03-07)
2+
3+
4+
15
# [2.3.0-beta2](https://github.com/RennCheung/codemirror-editor-vue3/compare/v2.2.1...v2.3.0-beta2) (2023-03-07)
26

37

package.json

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "codemirror-editor-vue3",
33
"description": "CodeMirror component for Vue3",
4-
"version": "2.3.0-beta2",
4+
"version": "2.3.0-beta.1",
55
"license": "MIT",
66
"files": [
77
"dist"
@@ -45,14 +45,12 @@
4545
"dev": "vite",
4646
"build": "vite build",
4747
"build:types": "tsc --emitDeclarationOnly vite build",
48-
"publish-pkg": "npm run release && vite build && git push && git push --tags && npm publish && npm run deploy-docs",
49-
"publish-beta": "npm run release && vite build && npm publish --tag=beta",
5048
"docs-dev": "vitepress dev docs --open",
5149
"docs-build": "vitepress build docs",
5250
"docs-serve": "vitepress serve docs",
5351
"deploy-docs": "bash scripts/deploy-docs.sh",
52+
"release": "tsx scripts/release.ts",
5453
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
55-
"release": "node scripts/release.cjs",
5654
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix",
5755
"tsc": "tsc"
5856
},
@@ -61,9 +59,9 @@
6159
"diff-match-patch": "^1.0.5"
6260
},
6361
"peerDependencies": {
64-
"vue": "^3.x",
6562
"codemirror": "^5.x",
66-
"diff-match-patch": "^1.0.5"
63+
"diff-match-patch": "^1.0.5",
64+
"vue": "^3.x"
6765
},
6866
"devDependencies": {
6967
"@commitlint/cli": "^16.1.0",
@@ -81,21 +79,24 @@
8179
"conventional-changelog-cli": "^2.0.31",
8280
"dedent": "^0.7.0",
8381
"diff-match-patch": "^1.0.5",
84-
"enquirer": "^2.3.6",
8582
"eslint": "^8.35.0",
8683
"eslint-config-airbnb-base": "^15.0.0",
8784
"eslint-config-prettier": "^8.6.0",
8885
"eslint-plugin-import": "^2.27.5",
8986
"eslint-plugin-prettier": "^4.2.1",
9087
"eslint-plugin-vue": "^9.9.0",
91-
"execa": "^4.0.2",
88+
"execa": "^7.0.0",
9289
"less": "^4.1.3",
9390
"lint-staged": "^10.2.10",
9491
"minimist": "^1.2.6",
92+
"picocolors": "^1.0.0",
9593
"prettier": "^2.8.4",
94+
"prompts": "^2.4.2",
9695
"rollup-plugin-cpy": "^2.0.1",
9796
"rollup-plugin-vue": "^6.0.0",
9897
"semver": "^7.3.5",
98+
"tsx": "^3.12.3",
99+
"enquirer": "^2.3.6",
99100
"typescript": "^4.9.5",
100101
"unplugin-auto-import": "^0.15.0",
101102
"vite": "^4.1.4",

0 commit comments

Comments
 (0)