@qlover/fe-release 0.1.4 → 0.1.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -2
- package/dist/cjs/index.d.ts +3 -3
- package/dist/es/index.d.ts +3 -3
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -18,7 +18,7 @@ fe-release [options]
|
|
|
18
18
|
|
|
19
19
|
### Options
|
|
20
20
|
|
|
21
|
-
- `-
|
|
21
|
+
- `-v, --version`:output the version.
|
|
22
22
|
- `-d, --dry-run`:do not touch or write anything, but show the commands.
|
|
23
23
|
- `-V, --verbose`:show more information.
|
|
24
24
|
- `-P, --pull-request`:create a release PR.
|
|
@@ -32,7 +32,7 @@ fe-release [options]
|
|
|
32
32
|
```bash
|
|
33
33
|
fe-release --version
|
|
34
34
|
# or
|
|
35
|
-
fe-release -
|
|
35
|
+
fe-release -v
|
|
36
36
|
```
|
|
37
37
|
|
|
38
38
|
2. dry run, show the commands:
|
package/dist/cjs/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { FeReleaseConfig, FeScriptContext,
|
|
1
|
+
import { FeReleaseConfig, FeScriptContext, Shell } from '@qlover/scripts-context';
|
|
2
2
|
import { Env } from '@qlover/env-loader';
|
|
3
|
-
import { ExecutorContext, ExecutorPlugin } from '@qlover/fe-utils';
|
|
3
|
+
import { ExecutorContext, ExecutorPlugin, Logger } from '@qlover/fe-utils';
|
|
4
4
|
|
|
5
5
|
interface InitOptions {
|
|
6
6
|
token?: string;
|
|
@@ -86,7 +86,7 @@ declare abstract class Plugin implements ExecutorPlugin {
|
|
|
86
86
|
abstract readonly pluginName: string;
|
|
87
87
|
readonly onlyOne = true;
|
|
88
88
|
constructor(context: ReleaseContext);
|
|
89
|
-
get logger():
|
|
89
|
+
get logger(): Logger;
|
|
90
90
|
get shell(): Shell;
|
|
91
91
|
getEnv(key: string, defaultValue?: string): string | undefined;
|
|
92
92
|
enabled(): boolean;
|
package/dist/es/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { FeReleaseConfig, FeScriptContext,
|
|
1
|
+
import { FeReleaseConfig, FeScriptContext, Shell } from '@qlover/scripts-context';
|
|
2
2
|
import { Env } from '@qlover/env-loader';
|
|
3
|
-
import { ExecutorContext, ExecutorPlugin } from '@qlover/fe-utils';
|
|
3
|
+
import { ExecutorContext, ExecutorPlugin, Logger } from '@qlover/fe-utils';
|
|
4
4
|
|
|
5
5
|
interface InitOptions {
|
|
6
6
|
token?: string;
|
|
@@ -86,7 +86,7 @@ declare abstract class Plugin implements ExecutorPlugin {
|
|
|
86
86
|
abstract readonly pluginName: string;
|
|
87
87
|
readonly onlyOne = true;
|
|
88
88
|
constructor(context: ReleaseContext);
|
|
89
|
-
get logger():
|
|
89
|
+
get logger(): Logger;
|
|
90
90
|
get shell(): Shell;
|
|
91
91
|
getEnv(key: string, defaultValue?: string): string | undefined;
|
|
92
92
|
enabled(): boolean;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@qlover/fe-release",
|
|
3
3
|
"description": "A tool for releasing front-end projects, supporting multiple release modes and configurations, simplifying the release process and improving efficiency.",
|
|
4
|
-
"version": "0.1.
|
|
4
|
+
"version": "0.1.5",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"private": false,
|
|
7
7
|
"homepage": "https://github.com/qlover/fe-base/tree/master/packages/fe-release",
|