@rife/cli 0.0.6-beta.19 → 0.0.6-beta.20

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.
@@ -64,7 +64,7 @@ function pluginRelease() {
64
64
  const filename = packOutput.filename;
65
65
  for (const item of packOutput.files)log.debug(item.path);
66
66
  const debug = false;
67
- const publish = `pnpm publish ${filename} --registry https://registry.npmjs.org --no-git-checks ${debug ? '--dry-run' : ''}`;
67
+ const publish = `pnpm publish ${filename} --registry https://registry.npmjs.org --no-git-checks --tag beta ${debug ? '--dry-run' : ''}`;
68
68
  log.info(`发布文件 ${publish}`);
69
69
  (0, external_child_process_namespaceObject.execSync)(publish, {
70
70
  stdio: 'inherit'
@@ -38,7 +38,7 @@ function pluginRelease() {
38
38
  const filename = packOutput.filename;
39
39
  for (const item of packOutput.files)log.debug(item.path);
40
40
  const debug = false;
41
- const publish = `pnpm publish ${filename} --registry https://registry.npmjs.org --no-git-checks ${debug ? '--dry-run' : ''}`;
41
+ const publish = `pnpm publish ${filename} --registry https://registry.npmjs.org --no-git-checks --tag beta ${debug ? '--dry-run' : ''}`;
42
42
  log.info(`发布文件 ${publish}`);
43
43
  execSync(publish, {
44
44
  stdio: 'inherit'
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rife/cli",
3
- "version": "0.0.6-beta.19",
3
+ "version": "0.0.6-beta.20",
4
4
  "description": "",
5
5
  "type": "module",
6
6
  "exports": {
@@ -45,7 +45,7 @@ export function pluginRelease() {
45
45
  }
46
46
 
47
47
  const debug = false;
48
- const publish = `pnpm publish ${filename} --registry https://registry.npmjs.org --no-git-checks ${
48
+ const publish = `pnpm publish ${filename} --registry https://registry.npmjs.org --no-git-checks --tag beta ${
49
49
  debug ? '--dry-run' : ''
50
50
  }`;
51
51
  log.info(`发布文件 ${publish}`);