Skip to content

Commit 3cd992e

Browse files
committed
chore: release cli@1.1.1
1 parent 6ebd788 commit 3cd992e

3 files changed

Lines changed: 43 additions & 4 deletions

File tree

CHANGELOG.md

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,45 @@
11

22

3+
## [1.1.1](https://github.com/originjs/origin.js/compare/cli@1.1.0...cli@1.1.1) (2022-05-16)
4+
5+
6+
### Bug Fixes
7+
8+
* oriTemplate directory not found ([6ebd788](https://github.com/originjs/origin.js/commit/6ebd788955ff2458d5b0a3c54e4ee3ad9506d943))
9+
10+
## [1.1.1](https://github.com/originjs/origin.js/compare/v1.0.0...v1.1.1) (2022-05-16)
11+
12+
13+
### Bug Fixes
14+
15+
* ignore coverage ([#121](https://github.com/originjs/origin.js/issues/121)) ([7690edd](https://github.com/originjs/origin.js/commit/7690edd86932c9d5601f4c4e4d10a968edf7aaa9))
16+
* incorrect relative path for building ([#144](https://github.com/originjs/origin.js/issues/144)) ([c73c505](https://github.com/originjs/origin.js/commit/c73c505e55376cf1ef6f85ff6404bb58dc2d2707))
17+
* modify crlf in test use cases ([#137](https://github.com/originjs/origin.js/issues/137)) ([4e1a6b5](https://github.com/originjs/origin.js/commit/4e1a6b5c7440ad958b1099f2647e37d935f44390))
18+
* oriTemplate directory not found ([6ebd788](https://github.com/originjs/origin.js/commit/6ebd788955ff2458d5b0a3c54e4ee3ad9506d943))
19+
* resolve code scanning alerts ([#136](https://github.com/originjs/origin.js/issues/136)) ([4a1c431](https://github.com/originjs/origin.js/commit/4a1c4318b3738a493f9eb0e1772f02a07413721a))
20+
* shell command built ([#135](https://github.com/originjs/origin.js/issues/135)) ([6a239bb](https://github.com/originjs/origin.js/commit/6a239bb8b74bab90c3c377c49969c7be55a56761))
21+
* working dir release error ([1ccee75](https://github.com/originjs/origin.js/commit/1ccee759c80be9c8b8d36a23dc1b02c97f7faf3a))
22+
23+
24+
### Features
25+
26+
* add ori --version ([#140](https://github.com/originjs/origin.js/issues/140)) ([ff639df](https://github.com/originjs/origin.js/commit/ff639dfc991779aab70192ea3cdaeedccd2c4b0b))
27+
* add release-it for release ([#146](https://github.com/originjs/origin.js/issues/146)) ([feeb0a9](https://github.com/originjs/origin.js/commit/feeb0a97476f618e5e0a282932e88b943193918a)), closes [#145](https://github.com/originjs/origin.js/issues/145)
28+
* github release action ([c4d8057](https://github.com/originjs/origin.js/commit/c4d8057fd5229c73464fe34258cc19edc4d66026))
29+
* improve release workflow ([0ad07e3](https://github.com/originjs/origin.js/commit/0ad07e348845f8d87b39931595ae51fb699f5084))
30+
* init title with project name ([#118](https://github.com/originjs/origin.js/issues/118)) ([487b46f](https://github.com/originjs/origin.js/commit/487b46faaa2d70a8f2a70899bf3c29463a863724))
31+
* migrate test to vitest ([#124](https://github.com/originjs/origin.js/issues/124)) ([1e12f9d](https://github.com/originjs/origin.js/commit/1e12f9df19bba2cde42c34b31e67a535b568e74a))
32+
* monorepo release ([#147](https://github.com/originjs/origin.js/issues/147)) ([cc4d673](https://github.com/originjs/origin.js/commit/cc4d673a5705b44e8e1cdfa1445a8360e2bc66c8))
33+
* option to choose jest or vitest ([#120](https://github.com/originjs/origin.js/issues/120)) ([e52bbcf](https://github.com/originjs/origin.js/commit/e52bbcf2ba9a6103a345e3c30f28c2ecd3fef6f3))
34+
* release cli@1.0.2 ([b560e5d](https://github.com/originjs/origin.js/commit/b560e5d661036407824871d79874eaedd29cde09))
35+
* support initialization with pinia ([#143](https://github.com/originjs/origin.js/issues/143)) ([f020598](https://github.com/originjs/origin.js/commit/f0205985bf7bbbd4fc57c5fa0b7f5fbf5913bd20))
36+
* switch to pnpm ([#129](https://github.com/originjs/origin.js/issues/129)) ([13b2098](https://github.com/originjs/origin.js/commit/13b2098d11f18aff89ffcce21d9cdd480e84fe12))
37+
* test use case ([#114](https://github.com/originjs/origin.js/issues/114)) ([f6905af](https://github.com/originjs/origin.js/commit/f6905af260ae8185bd320eb1aa8dcb8faaa6aab8))
38+
39+
40+
41+
42+
343
# [1.1.0](https://github.com/originjs/origin.js/compare/cli@1.0.2...cli@1.1.0) (2022-05-11)
444

545

package.json

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"private": true,
33
"name": "origin.js",
4-
"version": "1.1.0",
4+
"version": "1.1.1",
55
"repository": {
66
"type": "git",
77
"url": "git+https://github.com/originjs/origin.js.git"
@@ -26,8 +26,7 @@
2626
"release": {
2727
"command": "release-it --npm.skipChecks --no-git.requireCleanWorkingDir",
2828
"dependencies": [
29-
"./packages/cli:release",
30-
"./packages/cli-test-utils:release"
29+
"./packages/cli:release"
3130
]
3231
}
3332
},

packages/cli/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@originjs/cli",
3-
"version": "1.1.0",
3+
"version": "1.1.1",
44
"author": "@originjs",
55
"license": "MulanPSL-2.0",
66
"bin": {

0 commit comments

Comments
 (0)