@adbayb/stack 0.0.0-next-9c647dc → 0.0.0-next-2add8bc

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.
@@ -279,7 +279,11 @@ export default tseslint.config(
279
279
  "TSMethodSignature",
280
280
  "TSPropertySignature",
281
281
  ],
282
- publicOnly: true,
282
+ publicOnly: {
283
+ ancestorsOnly: true,
284
+ esm: true,
285
+ cjs: true,
286
+ },
283
287
  require: {
284
288
  ArrowFunctionExpression: true,
285
289
  ClassDeclaration: true,
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-9c647dc";
330
+ var version = "0.0.0-next-2add8bc";
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-9c647dc",
3
+ "version": "0.0.0-next-2add8bc",
4
4
  "description": "My opinionated JavaScript-based toolchain",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -3,12 +3,12 @@
3
3
  "name": "@examples/default",
4
4
  "version": "0.0.0",
5
5
  "scripts": {
6
- "start": "node -r esbuild-register ./src/index.ts"
6
+ "start": "tsx ./src/index.ts"
7
7
  },
8
8
  "dependencies": {
9
9
  "{{projectName}}": "workspace:^"
10
10
  },
11
11
  "devDependencies": {
12
- "esbuild-register": "3.4.2"
12
+ "tsx": "4.19.1"
13
13
  }
14
14
  }
@@ -1,4 +1,5 @@
1
1
  {
2
+ "name": "root",
2
3
  "private": true,
3
4
  "version": "0.0.0",
4
5
  "type": "module",
@@ -18,8 +19,8 @@
18
19
  "prettier": "@adbayb/stack/prettier",
19
20
  "packageManager": "pnpm@{{npmVersion}}",
20
21
  "engines": {
21
- "node": ">=18.0.0",
22
- "pnpm": ">=8.0.0",
22
+ "node": ">=20.0.0",
23
+ "pnpm": ">=9.0.0",
23
24
  "npm": "please-use-pnpm",
24
25
  "yarn": "please-use-pnpm"
25
26
  }
@@ -1,4 +1,4 @@
1
1
  {
2
2
  "extends": "@adbayb/stack/typescript",
3
- "exclude": ["node_modules", "**/dist"]
3
+ "exclude": ["node_modules", "**/node_modules", "**/dist"]
4
4
  }
@@ -10,15 +10,13 @@
10
10
  ],
11
11
  "sideEffects": false,
12
12
  "type": "module",
13
- "source": "./src/index.ts",
14
- "main": "./dist/index.cjs",
15
- "module": "./dist/index.mjs",
16
- "types": "./dist/index.d.ts",
17
13
  "exports": {
18
14
  ".": {
15
+ "source": "./src/index.ts",
16
+ "types": "./dist/index.d.ts",
19
17
  "require": "./dist/index.cjs",
20
18
  "import": "./dist/index.mjs",
21
- "types": "./dist/index.d.ts"
19
+ "default": "./dist/index.mjs"
22
20
  }
23
21
  },
24
22
  "license": "MIT",