@adbayb/stack 0.0.0-next-66d9b95 → 0.0.0-next-023d8d0
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
|
@@ -327,7 +327,7 @@ const PRESERVE_FILES = [
|
|
|
327
327
|
];
|
|
328
328
|
|
|
329
329
|
var name = "@adbayb/stack";
|
|
330
|
-
var version = "0.0.0-next-
|
|
330
|
+
var version = "0.0.0-next-023d8d0";
|
|
331
331
|
var description = "My opinionated JavaScript-based toolchain";
|
|
332
332
|
var publishConfig = {
|
|
333
333
|
access: "public"
|
package/package.json
CHANGED
|
@@ -37,11 +37,11 @@ jobs:
|
|
|
37
37
|
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
|
|
38
38
|
- name: Install dependencies
|
|
39
39
|
run: pnpm install --frozen-lockfile
|
|
40
|
-
- name: Publish
|
|
40
|
+
- name: Publish pre-release version(s)
|
|
41
41
|
run: |
|
|
42
42
|
pnpm --recursive exec pnpm version "$(pnpm show ./ version)-next-${GITHUB_SHA::7}"
|
|
43
43
|
pnpm --recursive exec pnpm publish --tag next --no-git-checks
|
|
44
|
-
- name: Prepare or Publish
|
|
44
|
+
- name: Prepare or Publish stable version(s)
|
|
45
45
|
uses: changesets/action@v1
|
|
46
46
|
with:
|
|
47
47
|
commit: "chore: release package(s)"
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default } from "@adbayb/stack/eslint";
|
package/template/tsconfig.json
CHANGED