@pezkuwi/dev 0.85.2 → 0.85.4

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 (96) hide show
  1. package/.skip-deno +0 -0
  2. package/README.md +547 -0
  3. package/build-deno/README.md +547 -0
  4. package/build-deno/detectOther.ts +2 -0
  5. package/build-deno/index.ts +4 -0
  6. package/build-deno/mod.ts +10 -0
  7. package/build-deno/packageInfo.ts +3 -0
  8. package/build-deno/root.ts +4 -0
  9. package/build-deno/rootJs/Clazz.ts +43 -0
  10. package/build-deno/rootJs/Jsx.tsx +42 -0
  11. package/build-deno/rootJs/JsxChild.tsx +18 -0
  12. package/build-deno/rootJs/augmented.ts +12 -0
  13. package/build-deno/rootJs/dynamic.d.mts +4 -0
  14. package/build-deno/rootJs/dynamic.mjs +13 -0
  15. package/build-deno/rootJs/index.ts +53 -0
  16. package/build-deno/rootJs/test.json.d.ts +9 -0
  17. package/build-deno/rootJs/testJson.json +5 -0
  18. package/build-deno/rootRust/lib.rs +1 -0
  19. package/build-deno/rootRust/mod.rs +1 -0
  20. package/build-deno/rootStatic/zagros.svg +1 -0
  21. package/build-deno/rootTests.ts +60 -0
  22. package/build-deno/types.ts +6 -0
  23. package/build-tsc/detectOther.d.ts +2 -0
  24. package/build-tsc/index.d.ts +1 -0
  25. package/build-tsc/packageInfo.d.ts +6 -0
  26. package/build-tsc/root.d.ts +2 -0
  27. package/build-tsc/rootJs/Clazz.d.ts +18 -0
  28. package/build-tsc/rootJs/Jsx.d.ts +5 -0
  29. package/build-tsc/rootJs/JsxChild.d.ts +9 -0
  30. package/build-tsc/rootJs/augmented.d.ts +8 -0
  31. package/build-tsc/rootJs/index.d.ts +19 -0
  32. package/build-tsc/rootTests.d.ts +2 -0
  33. package/build-tsc/types.d.ts +2 -0
  34. package/build-tsc-cjs/detectOther.js +5 -0
  35. package/build-tsc-cjs/index.js +5 -0
  36. package/build-tsc-cjs/packageInfo.js +7 -0
  37. package/build-tsc-cjs/root.js +8 -0
  38. package/build-tsc-cjs/rootJs/Clazz.js +38 -0
  39. package/build-tsc-cjs/rootJs/Jsx.js +16 -0
  40. package/build-tsc-cjs/rootJs/JsxChild.js +11 -0
  41. package/build-tsc-cjs/rootJs/augmented.js +4 -0
  42. package/build-tsc-cjs/rootJs/index.js +53 -0
  43. package/build-tsc-cjs/rootTests.js +46 -0
  44. package/build-tsc-cjs/types.js +4 -0
  45. package/build-tsc-esm/detectOther.js +3 -0
  46. package/build-tsc-esm/index.js +4 -0
  47. package/build-tsc-esm/packageInfo.js +4 -0
  48. package/build-tsc-esm/root.js +4 -0
  49. package/build-tsc-esm/rootJs/Clazz.js +34 -0
  50. package/build-tsc-esm/rootJs/Jsx.js +13 -0
  51. package/build-tsc-esm/rootJs/JsxChild.js +8 -0
  52. package/build-tsc-esm/rootJs/augmented.js +3 -0
  53. package/build-tsc-esm/rootJs/index.js +41 -0
  54. package/build-tsc-esm/rootTests.js +43 -0
  55. package/build-tsc-esm/types.js +3 -0
  56. package/cjs/packageInfo.js +1 -1
  57. package/cjs/sample.js +1 -1
  58. package/config/eslint.js +14 -2
  59. package/config/eslint.rules.js +2 -2
  60. package/config/prettier.cjs +1 -1
  61. package/config/rollup.js +1 -1
  62. package/config/typedoc.cjs +1 -1
  63. package/package.json +41 -41
  64. package/packageInfo.js +1 -1
  65. package/rootJs/dynamic.mjs +1 -1
  66. package/scripts/pezkuwi-ci-ghact-build.mjs +5 -1
  67. package/scripts/pezkuwi-ci-ghact-docs.mjs +1 -1
  68. package/scripts/pezkuwi-ci-ghpages-force.mjs +1 -1
  69. package/scripts/pezkuwi-dev-build-docs.mjs +1 -1
  70. package/scripts/pezkuwi-dev-build-ts.mjs +1 -1
  71. package/scripts/pezkuwi-dev-circular.mjs +1 -1
  72. package/scripts/pezkuwi-dev-clean-build.mjs +1 -1
  73. package/scripts/pezkuwi-dev-contrib.mjs +1 -1
  74. package/scripts/pezkuwi-dev-copy-dir.mjs +1 -1
  75. package/scripts/pezkuwi-dev-copy-to.mjs +1 -1
  76. package/scripts/pezkuwi-dev-deno-map.mjs +1 -1
  77. package/scripts/pezkuwi-dev-run-lint.mjs +1 -1
  78. package/scripts/pezkuwi-dev-run-node-ts.mjs +1 -1
  79. package/scripts/pezkuwi-dev-run-test.mjs +1 -1
  80. package/scripts/pezkuwi-dev-version.mjs +1 -1
  81. package/scripts/pezkuwi-dev-yarn-only.mjs +1 -1
  82. package/scripts/pezkuwi-exec-eslint.mjs +1 -1
  83. package/scripts/pezkuwi-exec-ghpages.mjs +1 -1
  84. package/scripts/pezkuwi-exec-ghrelease.mjs +1 -1
  85. package/scripts/pezkuwi-exec-node-test.mjs +1 -1
  86. package/scripts/pezkuwi-exec-rollup.mjs +1 -1
  87. package/scripts/pezkuwi-exec-tsc.mjs +1 -1
  88. package/scripts/pezkuwi-exec-webpack.mjs +1 -1
  89. package/scripts/util.mjs +1 -1
  90. package/tsconfig.build.json +18 -0
  91. package/tsconfig.build.tsbuildinfo +1 -0
  92. package/tsconfig.config.json +14 -0
  93. package/tsconfig.scripts.json +14 -0
  94. package/tsconfig.spec.json +18 -0
  95. package/tsconfig.spec.tsbuildinfo +1 -0
  96. package/package.json.new +0 -315
@@ -0,0 +1,3 @@
1
+ // Copyright 2017-2026 @pezkuwi/dev authors & contributors
2
+ // SPDX-License-Identifier: Apache-2.0
3
+ export {};
@@ -1,4 +1,4 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.packageInfo = void 0;
4
- exports.packageInfo = { name: '@pezkuwi/dev', path: typeof __dirname === 'string' ? __dirname : 'auto', type: 'cjs', version: '0.83.3' };
4
+ exports.packageInfo = { name: '@pezkuwi/dev', path: typeof __dirname === 'string' ? __dirname : 'auto', type: 'cjs', version: '0.85.4' };
package/cjs/sample.js CHANGED
@@ -1,4 +1,4 @@
1
- // Copyright 2017-2025 @pezkuwi/dev authors & contributors
1
+ // Copyright 2017-2026 @pezkuwi/dev authors & contributors
2
2
  // SPDX-License-Identifier: Apache-2.0
3
3
 
4
4
  module.exports = { foo: 'bar' };
package/config/eslint.js CHANGED
@@ -1,4 +1,4 @@
1
- // Copyright 2017-2025 @pezkuwi/dev authors & contributors
1
+ // Copyright 2017-2026 @pezkuwi/dev authors & contributors
2
2
  // SPDX-License-Identifier: Apache-2.0
3
3
 
4
4
  // @ts-expect-error No definition for this one
@@ -54,7 +54,19 @@ export default [
54
54
  '**/.yarn/',
55
55
  '**/build/',
56
56
  '**/build-*/',
57
- '**/coverage/'
57
+ '**/coverage/',
58
+ '**/cjs/**',
59
+ // Build output files (generated from src/)
60
+ 'packages/*/*.d.ts',
61
+ 'packages/*/*.js',
62
+ 'packages/*/*.mjs',
63
+ 'packages/*/*.cjs',
64
+ 'packages/*/rootJs/**',
65
+ 'packages/*/rootTests.*',
66
+ 'packages/*/browser.*',
67
+ 'packages/*/node.*',
68
+ 'packages/*/types.*',
69
+ 'packages/*/env/**'
58
70
  ]
59
71
  },
60
72
  {
@@ -1,4 +1,4 @@
1
- // Copyright 2017-2025 @pezkuwi/dev authors & contributors
1
+ // Copyright 2017-2026 @pezkuwi/dev authors & contributors
2
2
  // SPDX-License-Identifier: Apache-2.0
3
3
 
4
4
  import JSON5 from 'json5';
@@ -54,7 +54,7 @@ function getHeaderPattern () {
54
54
  years.push(`${i}`);
55
55
  }
56
56
 
57
- return ` Copyright 20(${years.join('|')})(-${fullyear})? @pezkuwi/(${packages})`;
57
+ return ` Copyright 20(${years.join('|')})(-${fullyear})? @pezkuwi/(${packages})( authors & contributors)?`;
58
58
  }
59
59
 
60
60
  export const overrideAll = {
@@ -1,4 +1,4 @@
1
- // Copyright 2017-2025 @pezkuwi/dev authors & contributors
1
+ // Copyright 2017-2026 @pezkuwi/dev authors & contributors
2
2
  // SPDX-License-Identifier: Apache-2.0
3
3
 
4
4
  module.exports = {
package/config/rollup.js CHANGED
@@ -1,4 +1,4 @@
1
- // Copyright 2017-2025 @pezkuwi/dev authors & contributors
1
+ // Copyright 2017-2026 @pezkuwi/dev authors & contributors
2
2
  // SPDX-License-Identifier: Apache-2.0
3
3
 
4
4
  import pluginAlias from '@rollup/plugin-alias';
@@ -1,4 +1,4 @@
1
- // Copyright 2017-2025 @pezkuwi/dev authors & contributors
1
+ // Copyright 2017-2026 @pezkuwi/dev authors & contributors
2
2
  // SPDX-License-Identifier: Apache-2.0
3
3
 
4
4
  module.exports = {
package/package.json CHANGED
@@ -1,21 +1,24 @@
1
1
  {
2
- "author": "Jaco Greeff <jacogr@gmail.com>",
3
- "bugs": "https://github.com/pezkuwi-js/dev/issues",
2
+ "author": "Pezkuwi Team <team@pezkuwichain.app>",
3
+ "bugs": "https://github.com/pezkuwichain/pezkuwi-dev/issues",
4
4
  "description": "A collection of shared CI scripts and development environment used by @pezkuwi projects",
5
5
  "engines": {
6
6
  "node": ">=18"
7
7
  },
8
- "homepage": "https://github.com/pezkuwi-js/dev/tree/master/packages/dev#readme",
8
+ "homepage": "https://github.com/pezkuwichain/pezkuwi-dev/tree/master/packages/dev#readme",
9
9
  "license": "Apache-2.0",
10
10
  "name": "@pezkuwi/dev",
11
11
  "repository": {
12
12
  "directory": "packages/dev",
13
13
  "type": "git",
14
- "url": "https://github.com/pezkuwi-js/dev.git"
14
+ "url": "https://github.com/pezkuwichain/pezkuwi-dev.git"
15
15
  },
16
16
  "sideEffects": false,
17
17
  "type": "module",
18
- "version": "0.85.2",
18
+ "types": "./index.d.ts",
19
+ "version": "0.85.4",
20
+ "main": "./cjs/index.js",
21
+ "module": "./index.js",
19
22
  "bin": {
20
23
  "pezkuwi-ci-ghact-build": "./scripts/pezkuwi-ci-ghact-build.mjs",
21
24
  "pezkuwi-ci-ghact-docs": "./scripts/pezkuwi-ci-ghact-docs.mjs",
@@ -41,12 +44,7 @@
41
44
  "pezkuwi-exec-tsc": "./scripts/pezkuwi-exec-tsc.mjs",
42
45
  "pezkuwi-exec-webpack": "./scripts/pezkuwi-exec-webpack.mjs"
43
46
  },
44
- "main": "./cjs/index.js",
45
- "module": "./index.js",
46
- "types": "./index.d.ts",
47
47
  "exports": {
48
- "./cjs/package.json": "./cjs/package.json",
49
- "./cjs/*": "./cjs/*.js",
50
48
  ".": {
51
49
  "module": {
52
50
  "types": "./index.d.ts",
@@ -61,14 +59,16 @@
61
59
  "default": "./index.js"
62
60
  }
63
61
  },
62
+ "./cjs/*": "./cjs/*.js",
63
+ "./cjs/package.json": "./cjs/package.json",
64
64
  "./config/eslint": "./config/eslint.js",
65
65
  "./config/eslint.rules": "./config/eslint.rules.js",
66
- "./config/prettier.cjs": "./config/prettier.cjs",
67
66
  "./config/prettier": "./config/prettier.cjs",
67
+ "./config/prettier.cjs": "./config/prettier.cjs",
68
68
  "./config/rollup": "./config/rollup.js",
69
69
  "./config/tsconfig.json": "./config/tsconfig.json",
70
- "./config/typedoc.cjs": "./config/typedoc.cjs",
71
70
  "./config/typedoc": "./config/typedoc.cjs",
71
+ "./config/typedoc.cjs": "./config/typedoc.cjs",
72
72
  "./detectOther": {
73
73
  "module": {
74
74
  "types": "./detectOther.d.ts",
@@ -87,7 +87,7 @@
87
87
  "require": "./cjs/package.json",
88
88
  "default": "./package.json"
89
89
  },
90
- "./packageInfo.js": {
90
+ "./packageInfo": {
91
91
  "module": {
92
92
  "types": "./packageInfo.d.ts",
93
93
  "default": "./packageInfo.js"
@@ -101,7 +101,7 @@
101
101
  "default": "./packageInfo.js"
102
102
  }
103
103
  },
104
- "./packageInfo": {
104
+ "./packageInfo.js": {
105
105
  "module": {
106
106
  "types": "./packageInfo.d.ts",
107
107
  "default": "./packageInfo.js"
@@ -171,9 +171,9 @@
171
171
  "default": "./rootJs/Clazz.js"
172
172
  }
173
173
  },
174
+ "./rootJs/dynamic": "./rootJs/dynamic.mjs",
174
175
  "./rootJs/dynamic.d.mts": "./rootJs/dynamic.d.mts",
175
176
  "./rootJs/dynamic.mjs": "./rootJs/dynamic.mjs",
176
- "./rootJs/dynamic": "./rootJs/dynamic.mjs",
177
177
  "./rootJs/Jsx": {
178
178
  "module": {
179
179
  "types": "./rootJs/Jsx.d.ts",
@@ -218,54 +218,54 @@
218
218
  "default": "./rootTests.js"
219
219
  }
220
220
  },
221
- "./scripts/pezkuwi-ci-ghact-build.mjs": "./scripts/pezkuwi-ci-ghact-build.mjs",
222
221
  "./scripts/pezkuwi-ci-ghact-build": "./scripts/pezkuwi-ci-ghact-build.mjs",
223
- "./scripts/pezkuwi-ci-ghact-docs.mjs": "./scripts/pezkuwi-ci-ghact-docs.mjs",
222
+ "./scripts/pezkuwi-ci-ghact-build.mjs": "./scripts/pezkuwi-ci-ghact-build.mjs",
224
223
  "./scripts/pezkuwi-ci-ghact-docs": "./scripts/pezkuwi-ci-ghact-docs.mjs",
225
- "./scripts/pezkuwi-ci-ghpages-force.mjs": "./scripts/pezkuwi-ci-ghpages-force.mjs",
224
+ "./scripts/pezkuwi-ci-ghact-docs.mjs": "./scripts/pezkuwi-ci-ghact-docs.mjs",
226
225
  "./scripts/pezkuwi-ci-ghpages-force": "./scripts/pezkuwi-ci-ghpages-force.mjs",
227
- "./scripts/pezkuwi-dev-build-docs.mjs": "./scripts/pezkuwi-dev-build-docs.mjs",
226
+ "./scripts/pezkuwi-ci-ghpages-force.mjs": "./scripts/pezkuwi-ci-ghpages-force.mjs",
228
227
  "./scripts/pezkuwi-dev-build-docs": "./scripts/pezkuwi-dev-build-docs.mjs",
229
- "./scripts/pezkuwi-dev-build-ts.mjs": "./scripts/pezkuwi-dev-build-ts.mjs",
228
+ "./scripts/pezkuwi-dev-build-docs.mjs": "./scripts/pezkuwi-dev-build-docs.mjs",
230
229
  "./scripts/pezkuwi-dev-build-ts": "./scripts/pezkuwi-dev-build-ts.mjs",
231
- "./scripts/pezkuwi-dev-circular.mjs": "./scripts/pezkuwi-dev-circular.mjs",
230
+ "./scripts/pezkuwi-dev-build-ts.mjs": "./scripts/pezkuwi-dev-build-ts.mjs",
232
231
  "./scripts/pezkuwi-dev-circular": "./scripts/pezkuwi-dev-circular.mjs",
233
- "./scripts/pezkuwi-dev-clean-build.mjs": "./scripts/pezkuwi-dev-clean-build.mjs",
232
+ "./scripts/pezkuwi-dev-circular.mjs": "./scripts/pezkuwi-dev-circular.mjs",
234
233
  "./scripts/pezkuwi-dev-clean-build": "./scripts/pezkuwi-dev-clean-build.mjs",
235
- "./scripts/pezkuwi-dev-contrib.mjs": "./scripts/pezkuwi-dev-contrib.mjs",
234
+ "./scripts/pezkuwi-dev-clean-build.mjs": "./scripts/pezkuwi-dev-clean-build.mjs",
236
235
  "./scripts/pezkuwi-dev-contrib": "./scripts/pezkuwi-dev-contrib.mjs",
237
- "./scripts/pezkuwi-dev-copy-dir.mjs": "./scripts/pezkuwi-dev-copy-dir.mjs",
236
+ "./scripts/pezkuwi-dev-contrib.mjs": "./scripts/pezkuwi-dev-contrib.mjs",
238
237
  "./scripts/pezkuwi-dev-copy-dir": "./scripts/pezkuwi-dev-copy-dir.mjs",
239
- "./scripts/pezkuwi-dev-copy-to.mjs": "./scripts/pezkuwi-dev-copy-to.mjs",
238
+ "./scripts/pezkuwi-dev-copy-dir.mjs": "./scripts/pezkuwi-dev-copy-dir.mjs",
240
239
  "./scripts/pezkuwi-dev-copy-to": "./scripts/pezkuwi-dev-copy-to.mjs",
241
- "./scripts/pezkuwi-dev-deno-map.mjs": "./scripts/pezkuwi-dev-deno-map.mjs",
240
+ "./scripts/pezkuwi-dev-copy-to.mjs": "./scripts/pezkuwi-dev-copy-to.mjs",
242
241
  "./scripts/pezkuwi-dev-deno-map": "./scripts/pezkuwi-dev-deno-map.mjs",
243
- "./scripts/pezkuwi-dev-run-lint.mjs": "./scripts/pezkuwi-dev-run-lint.mjs",
242
+ "./scripts/pezkuwi-dev-deno-map.mjs": "./scripts/pezkuwi-dev-deno-map.mjs",
244
243
  "./scripts/pezkuwi-dev-run-lint": "./scripts/pezkuwi-dev-run-lint.mjs",
245
- "./scripts/pezkuwi-dev-run-node-ts.mjs": "./scripts/pezkuwi-dev-run-node-ts.mjs",
244
+ "./scripts/pezkuwi-dev-run-lint.mjs": "./scripts/pezkuwi-dev-run-lint.mjs",
246
245
  "./scripts/pezkuwi-dev-run-node-ts": "./scripts/pezkuwi-dev-run-node-ts.mjs",
247
- "./scripts/pezkuwi-dev-run-test.mjs": "./scripts/pezkuwi-dev-run-test.mjs",
246
+ "./scripts/pezkuwi-dev-run-node-ts.mjs": "./scripts/pezkuwi-dev-run-node-ts.mjs",
248
247
  "./scripts/pezkuwi-dev-run-test": "./scripts/pezkuwi-dev-run-test.mjs",
249
- "./scripts/pezkuwi-dev-version.mjs": "./scripts/pezkuwi-dev-version.mjs",
248
+ "./scripts/pezkuwi-dev-run-test.mjs": "./scripts/pezkuwi-dev-run-test.mjs",
250
249
  "./scripts/pezkuwi-dev-version": "./scripts/pezkuwi-dev-version.mjs",
251
- "./scripts/pezkuwi-dev-yarn-only.mjs": "./scripts/pezkuwi-dev-yarn-only.mjs",
250
+ "./scripts/pezkuwi-dev-version.mjs": "./scripts/pezkuwi-dev-version.mjs",
252
251
  "./scripts/pezkuwi-dev-yarn-only": "./scripts/pezkuwi-dev-yarn-only.mjs",
253
- "./scripts/pezkuwi-exec-eslint.mjs": "./scripts/pezkuwi-exec-eslint.mjs",
252
+ "./scripts/pezkuwi-dev-yarn-only.mjs": "./scripts/pezkuwi-dev-yarn-only.mjs",
254
253
  "./scripts/pezkuwi-exec-eslint": "./scripts/pezkuwi-exec-eslint.mjs",
255
- "./scripts/pezkuwi-exec-ghpages.mjs": "./scripts/pezkuwi-exec-ghpages.mjs",
254
+ "./scripts/pezkuwi-exec-eslint.mjs": "./scripts/pezkuwi-exec-eslint.mjs",
256
255
  "./scripts/pezkuwi-exec-ghpages": "./scripts/pezkuwi-exec-ghpages.mjs",
257
- "./scripts/pezkuwi-exec-ghrelease.mjs": "./scripts/pezkuwi-exec-ghrelease.mjs",
256
+ "./scripts/pezkuwi-exec-ghpages.mjs": "./scripts/pezkuwi-exec-ghpages.mjs",
258
257
  "./scripts/pezkuwi-exec-ghrelease": "./scripts/pezkuwi-exec-ghrelease.mjs",
259
- "./scripts/pezkuwi-exec-node-test.mjs": "./scripts/pezkuwi-exec-node-test.mjs",
258
+ "./scripts/pezkuwi-exec-ghrelease.mjs": "./scripts/pezkuwi-exec-ghrelease.mjs",
260
259
  "./scripts/pezkuwi-exec-node-test": "./scripts/pezkuwi-exec-node-test.mjs",
261
- "./scripts/pezkuwi-exec-rollup.mjs": "./scripts/pezkuwi-exec-rollup.mjs",
260
+ "./scripts/pezkuwi-exec-node-test.mjs": "./scripts/pezkuwi-exec-node-test.mjs",
262
261
  "./scripts/pezkuwi-exec-rollup": "./scripts/pezkuwi-exec-rollup.mjs",
263
- "./scripts/pezkuwi-exec-tsc.mjs": "./scripts/pezkuwi-exec-tsc.mjs",
262
+ "./scripts/pezkuwi-exec-rollup.mjs": "./scripts/pezkuwi-exec-rollup.mjs",
264
263
  "./scripts/pezkuwi-exec-tsc": "./scripts/pezkuwi-exec-tsc.mjs",
265
- "./scripts/pezkuwi-exec-webpack.mjs": "./scripts/pezkuwi-exec-webpack.mjs",
264
+ "./scripts/pezkuwi-exec-tsc.mjs": "./scripts/pezkuwi-exec-tsc.mjs",
266
265
  "./scripts/pezkuwi-exec-webpack": "./scripts/pezkuwi-exec-webpack.mjs",
267
- "./scripts/util.mjs": "./scripts/util.mjs",
266
+ "./scripts/pezkuwi-exec-webpack.mjs": "./scripts/pezkuwi-exec-webpack.mjs",
268
267
  "./scripts/util": "./scripts/util.mjs",
268
+ "./scripts/util.mjs": "./scripts/util.mjs",
269
269
  "./types": {
270
270
  "module": {
271
271
  "types": "./types.d.ts",
@@ -283,8 +283,8 @@
283
283
  },
284
284
  "dependencies": {
285
285
  "@eslint/js": "^8.56.0",
286
- "@pezkuwi/dev-test": "^0.85.1",
287
- "@pezkuwi/dev-ts": "^0.85.1",
286
+ "@pezkuwi/dev-test": "^0.85.3",
287
+ "@pezkuwi/dev-ts": "^0.85.3",
288
288
  "@rollup/plugin-alias": "^5.1.1",
289
289
  "@rollup/plugin-commonjs": "^25.0.8",
290
290
  "@rollup/plugin-dynamic-import-vars": "^2.1.5",
package/packageInfo.js CHANGED
@@ -1 +1 @@
1
- export const packageInfo = { name: '@pezkuwi/dev', path: (import.meta && import.meta.url) ? new URL(import.meta.url).pathname.substring(0, new URL(import.meta.url).pathname.lastIndexOf('/') + 1) : 'auto', type: 'esm', version: '0.83.3' };
1
+ export const packageInfo = { name: '@pezkuwi/dev', path: (import.meta && import.meta.url) ? new URL(import.meta.url).pathname.substring(0, new URL(import.meta.url).pathname.lastIndexOf('/') + 1) : 'auto', type: 'esm', version: '0.85.4' };
@@ -1,4 +1,4 @@
1
- // Copyright 2017-2025 @pezkuwi/dev authors & contributors
1
+ // Copyright 2017-2026 @pezkuwi/dev authors & contributors
2
2
  // SPDX-License-Identifier: Apache-2.0
3
3
 
4
4
  /**
@@ -1,5 +1,5 @@
1
1
  #!/usr/bin/env node
2
- // Copyright 2017-2025 @pezkuwi/dev authors & contributors
2
+ // Copyright 2017-2026 @pezkuwi/dev authors & contributors
3
3
  // SPDX-License-Identifier: Apache-2.0
4
4
 
5
5
  import fs from 'node:fs';
@@ -473,6 +473,10 @@ function gitPush () {
473
473
 
474
474
  skip-checks: true"`);
475
475
 
476
+ // Make sure the release commit is on top of the latest master
477
+ execGit(`pull --rebase ${repo} master`);
478
+
479
+ // Now push normally
476
480
  execGit(`push ${repo} HEAD:${process.env['GITHUB_REF']}`, true);
477
481
 
478
482
  if (doGHRelease) {
@@ -1,5 +1,5 @@
1
1
  #!/usr/bin/env node
2
- // Copyright 2017-2025 @pezkuwi/dev authors & contributors
2
+ // Copyright 2017-2026 @pezkuwi/dev authors & contributors
3
3
  // SPDX-License-Identifier: Apache-2.0
4
4
 
5
5
  import { execPm, GITHUB_REPO, GITHUB_TOKEN_URL, gitSetup, logBin } from './util.mjs';
@@ -1,5 +1,5 @@
1
1
  #!/usr/bin/env node
2
- // Copyright 2017-2025 @pezkuwi/dev authors & contributors
2
+ // Copyright 2017-2026 @pezkuwi/dev authors & contributors
3
3
  // SPDX-License-Identifier: Apache-2.0
4
4
 
5
5
  import fs from 'node:fs';
@@ -1,5 +1,5 @@
1
1
  #!/usr/bin/env node
2
- // Copyright 2017-2025 @pezkuwi/dev authors & contributors
2
+ // Copyright 2017-2026 @pezkuwi/dev authors & contributors
3
3
  // SPDX-License-Identifier: Apache-2.0
4
4
 
5
5
  import fs from 'node:fs';
@@ -1,5 +1,5 @@
1
1
  #!/usr/bin/env node
2
- // Copyright 2017-2025 @pezkuwi/dev authors & contributors
2
+ // Copyright 2017-2026 @pezkuwi/dev authors & contributors
3
3
  // SPDX-License-Identifier: Apache-2.0
4
4
 
5
5
  import JSON5 from 'json5';
@@ -1,5 +1,5 @@
1
1
  #!/usr/bin/env node
2
- // Copyright 2017-2025 @pezkuwi/dev authors & contributors
2
+ // Copyright 2017-2026 @pezkuwi/dev authors & contributors
3
3
  // SPDX-License-Identifier: Apache-2.0
4
4
 
5
5
  // @ts-expect-error For scripts we don't include @types/* definitions
@@ -1,5 +1,5 @@
1
1
  #!/usr/bin/env node
2
- // Copyright 2017-2025 @pezkuwi/dev authors & contributors
2
+ // Copyright 2017-2026 @pezkuwi/dev authors & contributors
3
3
  // SPDX-License-Identifier: Apache-2.0
4
4
 
5
5
  import fs from 'node:fs';
@@ -1,5 +1,5 @@
1
1
  #!/usr/bin/env node
2
- // Copyright 2017-2025 @pezkuwi/dev authors & contributors
2
+ // Copyright 2017-2026 @pezkuwi/dev authors & contributors
3
3
  // SPDX-License-Identifier: Apache-2.0
4
4
 
5
5
  import fs from 'node:fs';
@@ -1,5 +1,5 @@
1
1
  #!/usr/bin/env node
2
- // Copyright 2017-2025 @pezkuwi/dev authors & contributors
2
+ // Copyright 2017-2026 @pezkuwi/dev authors & contributors
3
3
  // SPDX-License-Identifier: Apache-2.0
4
4
 
5
5
  import { copyDirSync, exitFatal, logBin } from './util.mjs';
@@ -1,5 +1,5 @@
1
1
  #!/usr/bin/env node
2
- // Copyright 2017-2025 @pezkuwi/dev authors & contributors
2
+ // Copyright 2017-2026 @pezkuwi/dev authors & contributors
3
3
  // SPDX-License-Identifier: Apache-2.0
4
4
 
5
5
  import fs from 'node:fs';
@@ -1,5 +1,5 @@
1
1
  #!/usr/bin/env node
2
- // Copyright 2017-2025 @pezkuwi/dev authors & contributors
2
+ // Copyright 2017-2026 @pezkuwi/dev authors & contributors
3
3
  // SPDX-License-Identifier: Apache-2.0
4
4
 
5
5
  import fs from 'node:fs';
@@ -1,5 +1,5 @@
1
1
  #!/usr/bin/env node
2
- // Copyright 2017-2025 @pezkuwi/dev authors & contributors
2
+ // Copyright 2017-2026 @pezkuwi/dev authors & contributors
3
3
  // SPDX-License-Identifier: Apache-2.0
4
4
 
5
5
  import process from 'node:process';
@@ -1,5 +1,5 @@
1
1
  #!/usr/bin/env node
2
- // Copyright 2017-2025 @pezkuwi/dev authors & contributors
2
+ // Copyright 2017-2026 @pezkuwi/dev authors & contributors
3
3
  // SPDX-License-Identifier: Apache-2.0
4
4
 
5
5
  import { execNodeTs, logBin } from './util.mjs';
@@ -1,5 +1,5 @@
1
1
  #!/usr/bin/env node
2
- // Copyright 2017-2025 @pezkuwi/dev authors & contributors
2
+ // Copyright 2017-2026 @pezkuwi/dev authors & contributors
3
3
  // SPDX-License-Identifier: Apache-2.0
4
4
 
5
5
  import process from 'node:process';
@@ -1,5 +1,5 @@
1
1
  #!/usr/bin/env node
2
- // Copyright 2017-2025 @pezkuwi/dev authors & contributors
2
+ // Copyright 2017-2026 @pezkuwi/dev authors & contributors
3
3
  // SPDX-License-Identifier: Apache-2.0
4
4
 
5
5
  import fs from 'node:fs';
@@ -1,5 +1,5 @@
1
1
  #!/usr/bin/env node
2
- // Copyright 2017-2025 @pezkuwi/dev authors & contributors
2
+ // Copyright 2017-2026 @pezkuwi/dev authors & contributors
3
3
  // SPDX-License-Identifier: Apache-2.0
4
4
 
5
5
  import process from 'node:process';
@@ -1,5 +1,5 @@
1
1
  #!/usr/bin/env node
2
- // Copyright 2017-2025 @pezkuwi/dev authors & contributors
2
+ // Copyright 2017-2026 @pezkuwi/dev authors & contributors
3
3
  // SPDX-License-Identifier: Apache-2.0
4
4
 
5
5
  import { importRelative } from './util.mjs';
@@ -1,5 +1,5 @@
1
1
  #!/usr/bin/env node
2
- // Copyright 2017-2025 @pezkuwi/dev authors & contributors
2
+ // Copyright 2017-2026 @pezkuwi/dev authors & contributors
3
3
  // SPDX-License-Identifier: Apache-2.0
4
4
 
5
5
  import { importRelative } from './util.mjs';
@@ -1,5 +1,5 @@
1
1
  #!/usr/bin/env node
2
- // Copyright 2017-2025 @pezkuwi/dev authors & contributors
2
+ // Copyright 2017-2026 @pezkuwi/dev authors & contributors
3
3
  // SPDX-License-Identifier: Apache-2.0
4
4
 
5
5
  import { importRelative } from './util.mjs';
@@ -1,5 +1,5 @@
1
1
  #!/usr/bin/env node
2
- // Copyright 2017-2025 @pezkuwi/dev authors & contributors
2
+ // Copyright 2017-2026 @pezkuwi/dev authors & contributors
3
3
  // SPDX-License-Identifier: Apache-2.0
4
4
 
5
5
  // For Node 18, earliest usable is 18.14:
@@ -1,5 +1,5 @@
1
1
  #!/usr/bin/env node
2
- // Copyright 2017-2025 @pezkuwi/dev authors & contributors
2
+ // Copyright 2017-2026 @pezkuwi/dev authors & contributors
3
3
  // SPDX-License-Identifier: Apache-2.0
4
4
 
5
5
  import { execViaNode } from './util.mjs';
@@ -1,5 +1,5 @@
1
1
  #!/usr/bin/env node
2
- // Copyright 2017-2025 @pezkuwi/dev authors & contributors
2
+ // Copyright 2017-2026 @pezkuwi/dev authors & contributors
3
3
  // SPDX-License-Identifier: Apache-2.0
4
4
 
5
5
  import { importDirect } from './util.mjs';
@@ -1,5 +1,5 @@
1
1
  #!/usr/bin/env node
2
- // Copyright 2017-2025 @pezkuwi/dev authors & contributors
2
+ // Copyright 2017-2026 @pezkuwi/dev authors & contributors
3
3
  // SPDX-License-Identifier: Apache-2.0
4
4
 
5
5
  import { importDirect } from './util.mjs';
package/scripts/util.mjs CHANGED
@@ -1,4 +1,4 @@
1
- // Copyright 2017-2025 @pezkuwi/dev authors & contributors
1
+ // Copyright 2017-2026 @pezkuwi/dev authors & contributors
2
2
  // SPDX-License-Identifier: Apache-2.0
3
3
 
4
4
  import cp from 'node:child_process';
@@ -0,0 +1,18 @@
1
+ {
2
+ "extends": "../../tsconfig.base.json",
3
+ "compilerOptions": {
4
+ "baseUrl": "..",
5
+ "outDir": "./build",
6
+ "rootDir": "./src"
7
+ },
8
+ "exclude": [
9
+ "**/mod.ts",
10
+ "**/*.spec.ts",
11
+ "**/*.spec.tsx"
12
+ ],
13
+ "include": [
14
+ "src/**/*",
15
+ "src/**/*.json"
16
+ ],
17
+ "references": []
18
+ }