zcb 0.0.22 → 0.0.24

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.
Files changed (2) hide show
  1. package/bin/zcb.mjs +1 -1
  2. package/package.json +8 -7
package/bin/zcb.mjs CHANGED
@@ -1,3 +1,3 @@
1
1
  #!/usr/bin/env node
2
- const { cli } = await import('../dist/main/cli.mjs'); // eslint-disable-line import/no-unresolved
2
+ const { cli } = await import('../dist/esm/cli.mjs'); // eslint-disable-line import/no-unresolved
3
3
  cli();
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "zcb",
3
3
  "description": "Build configs with type safety from zod schema.",
4
- "version": "0.0.22",
4
+ "version": "0.0.24",
5
5
  "author": "Dylan Aubrey",
6
6
  "license": "MIT",
7
7
  "homepage": "https://github.com/badbatch/zod-config-builder",
@@ -14,7 +14,7 @@
14
14
  "exports": {
15
15
  "types": "./dist/types/index.d.ts",
16
16
  "import": "./dist/esm/index.mjs",
17
- "require": "./dist/cjs/index.mjs"
17
+ "require": "./dist/cjs/index.cjs"
18
18
  },
19
19
  "publishConfig": {
20
20
  "access": "public"
@@ -54,7 +54,7 @@
54
54
  "@commitlint/prompt-cli": "^17.6.3",
55
55
  "@jest/globals": "^29.5.0",
56
56
  "@repodog/babel-config": "^1.1.11",
57
- "@repodog/cli": "^1.2.2",
57
+ "@repodog/cli": "^1.2.4",
58
58
  "@repodog/commitlint-config": "^1.1.6",
59
59
  "@repodog/eslint-config": "^1.1.17",
60
60
  "@repodog/eslint-config-jest": "^1.1.10",
@@ -62,7 +62,7 @@
62
62
  "@repodog/markdownlint-config": "^1.1.5",
63
63
  "@repodog/prettier-config": "^1.1.5",
64
64
  "@repodog/rollup-config": "^1.1.8",
65
- "@repodog/syncpack-config": "^1.2.1",
65
+ "@repodog/syncpack-config": "^1.2.2",
66
66
  "@repodog/ts-config": "^1.1.6",
67
67
  "@rollup/plugin-babel": "^6.0.3",
68
68
  "@rollup/plugin-commonjs": "^25.0.7",
@@ -96,6 +96,7 @@
96
96
  "eslint-plugin-sort-keys-fix": "^1.1.2",
97
97
  "eslint-plugin-typescript-sort-keys": "^2.3.0",
98
98
  "eslint-plugin-unicorn": "^46.0.1",
99
+ "fast-check": "^3.14.0",
99
100
  "generate-changelog": "^1.8.0",
100
101
  "husky": "^8.0.3",
101
102
  "identity-obj-proxy": "^3.0.0",
@@ -110,7 +111,7 @@
110
111
  "rollup-plugin-copy": "^3.4.0",
111
112
  "rollup-plugin-sourcemaps": "^0.6.3",
112
113
  "suppress-experimental-warnings": "^1.1.17",
113
- "syncpack": "^9.8.6",
114
+ "syncpack": "^12.0.0-alpha.0",
114
115
  "ts-node": "^10.9.1",
115
116
  "ts-toolbelt": "^9.6.0",
116
117
  "type-fest": "^3.10.0",
@@ -134,10 +135,10 @@
134
135
  "cut:post-version": "pnpm run build",
135
136
  "lint": "eslint . --ext .ts,.cjs",
136
137
  "repodog": "repodog",
137
- "syncpack": "syncpack",
138
+ "syncpack": "syncpack format && syncpack list-mismatches && syncpack lint-semver-ranges",
138
139
  "test": "node --require=suppress-experimental-warnings --experimental-vm-modules node_modules/jest/bin/jest.js",
139
140
  "type-check": "tsc --noEmit",
140
- "validate": "syncpack format && syncpack lint-semver-ranges && pnpm run build && pnpm run lint && pnpm run type-check && pnpm run test",
141
+ "validate": "npm run syncpack && pnpm run build && pnpm run lint && pnpm run type-check && pnpm run test",
141
142
  "zcb:build": "NODE_OPTIONS=\"--loader ts-node/esm\" node ./bin/zcb.mjs build ./src/__testUtils__/configBuilder.ts ./src/__testUtils__/builtConfig.ts",
142
143
  "zcb:watch": "NODE_OPTIONS=\"--loader ts-node/esm\" node ./bin/zcb.mjs watch ./src/__testUtils__/configBuilder.ts ./src/__testUtils__/builtConfig.ts"
143
144
  }