@adbayb/stack 0.0.0-next-4a5e303 → 0.0.0-next-1ee86fc
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/dist/index.mjs
CHANGED
|
@@ -6,7 +6,7 @@ import { existsSync, cpSync, readFileSync, renameSync, writeFileSync, readdirSyn
|
|
|
6
6
|
import { writeFile, chmod, mkdir, symlink } from 'node:fs/promises';
|
|
7
7
|
import { fdir } from 'fdir';
|
|
8
8
|
|
|
9
|
-
var version = "0.0.0-next-
|
|
9
|
+
var version = "0.0.0-next-1ee86fc";
|
|
10
10
|
|
|
11
11
|
const VERSION = version;
|
|
12
12
|
|
package/package.json
CHANGED
|
@@ -38,9 +38,10 @@ jobs:
|
|
|
38
38
|
- name: Install dependencies
|
|
39
39
|
run: pnpm install --frozen-lockfile
|
|
40
40
|
- name: Publish pre-release version(s)
|
|
41
|
+
if: "!contains(github.event.head_commit.message, 'chore: release package(s)')"
|
|
41
42
|
run: |
|
|
42
|
-
pnpm --recursive exec pnpm version "$(pnpm show ./ version)-next-${GITHUB_SHA::7}"
|
|
43
|
-
pnpm --recursive exec pnpm publish --tag next --no-git-checks
|
|
43
|
+
pnpm --filter=\!@examples/\* --recursive exec pnpm version "$(pnpm show ./ version)-next-${GITHUB_SHA::7}"
|
|
44
|
+
pnpm --filter=\!@examples/\* --recursive exec pnpm publish --tag next --no-git-checks
|
|
44
45
|
- name: Prepare or Publish stable version(s)
|
|
45
46
|
uses: changesets/action@v1
|
|
46
47
|
with:
|
|
@@ -38,9 +38,10 @@ jobs:
|
|
|
38
38
|
- name: Install dependencies
|
|
39
39
|
run: pnpm install --frozen-lockfile
|
|
40
40
|
- name: Publish pre-release version(s)
|
|
41
|
+
if: "!contains(github.event.head_commit.message, 'chore: release package(s)')"
|
|
41
42
|
run: |
|
|
42
|
-
pnpm --recursive exec pnpm version "$(pnpm show ./ version)-next-${GITHUB_SHA::7}"
|
|
43
|
-
pnpm --recursive exec pnpm publish --tag next --no-git-checks
|
|
43
|
+
pnpm --filter=\!@examples/\* --recursive exec pnpm version "$(pnpm show ./ version)-next-${GITHUB_SHA::7}"
|
|
44
|
+
pnpm --filter=\!@examples/\* --recursive exec pnpm publish --tag next --no-git-checks
|
|
44
45
|
- name: Prepare or Publish stable version(s)
|
|
45
46
|
uses: changesets/action@v1
|
|
46
47
|
with:
|