@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-66d9b95";
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@adbayb/stack",
3
- "version": "0.0.0-next-66d9b95",
3
+ "version": "0.0.0-next-023d8d0",
4
4
  "description": "My opinionated JavaScript-based toolchain",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -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 a pre-release version
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 a stable version
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";
@@ -1,3 +1,4 @@
1
1
  {
2
- "extends": "@adbayb/stack/typescript"
2
+ "extends": "@adbayb/stack/typescript",
3
+ "exclude": ["node_modules", "**/dist"]
3
4
  }
@@ -1,3 +0,0 @@
1
- {
2
- "extends": "@adbayb"
3
- }