@atls/code-schematics 2.0.9 → 2.0.10

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/CHANGELOG.md CHANGED
@@ -1,5 +1,18 @@
1
1
 
2
2
 
3
+ ## [2.0.10](https://github.com/atls/raijin/compare/@atls/code-schematics@2.0.9...@atls/code-schematics@2.0.10) (2025-12-07)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+
9
+ * **code:** helpers log ([e1042ba](https://github.com/atls/raijin/commit/e1042ba9112cd0e26bcc8f896bfe37bb7e5cd8f6))
10
+ * **raijin:** linter ([790b4d8](https://github.com/atls/raijin/commit/790b4d8943b1352521fc782143999bb74d8b152c))
11
+
12
+
13
+
14
+
15
+
3
16
  ## [2.0.9](https://github.com/atls/raijin/compare/@atls/code-schematics@2.0.8...@atls/code-schematics@2.0.9) (2025-11-15)
4
17
 
5
18
 
@@ -37,7 +37,7 @@ export const runSchematicHelper = async (schematicName, options, collectionPath)
37
37
  if (err instanceof UnsuccessfulWorkflowExecution) {
38
38
  console.debug('The Schematic workflow failed. See above.');
39
39
  }
40
- else if (debug && err instanceof Error) {
40
+ else if (err instanceof Error) {
41
41
  console.debug(`An error occured:\n${err.stack}`);
42
42
  }
43
43
  else {
@@ -1,4 +1,4 @@
1
- import { writeFile } from 'fs/promises';
1
+ import { writeFile } from 'node:fs/promises';
2
2
  import esbuild from 'esbuild';
3
3
  import { UndefinedBuildRedultException } from '../exceptions/index.js';
4
4
  import { getEsbuildConfig } from '../getters/index.js';
@@ -1,9 +1,9 @@
1
- import { readdir } from 'fs/promises';
2
- import { mkdir } from 'fs/promises';
3
- import { writeFile } from 'fs/promises';
4
- import { readFile } from 'fs/promises';
5
- import { join } from 'path';
6
- import { dirname } from 'path';
1
+ import { readdir } from 'node:fs/promises';
2
+ import { mkdir } from 'node:fs/promises';
3
+ import { writeFile } from 'node:fs/promises';
4
+ import { readFile } from 'node:fs/promises';
5
+ import { join } from 'node:path';
6
+ import { dirname } from 'node:path';
7
7
  async function buildFileStructure(dirPath) {
8
8
  const result = {};
9
9
  const entries = await readdir(dirPath, { withFileTypes: true });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atls/code-schematics",
3
- "version": "2.0.9",
3
+ "version": "2.0.10",
4
4
  "license": "BSD-3-Clause",
5
5
  "type": "module",
6
6
  "exports": {
@@ -27,7 +27,7 @@
27
27
  "strip-json-comments": "3.1.1"
28
28
  },
29
29
  "devDependencies": {
30
- "@atls/code-runtime": "2.1.15",
30
+ "@atls/code-runtime": "2.1.16",
31
31
  "@types/node": "22.13.10",
32
32
  "@yarnpkg/cli": "4.5.1",
33
33
  "@yarnpkg/core": "4.1.4",