@atls/code-schematics 2.0.26 → 2.0.28
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,31 @@
|
|
|
1
1
|
|
|
2
2
|
|
|
3
|
+
## [2.0.28](https://github.com/atls/raijin/compare/@atls/code-schematics@2.0.27...@atls/code-schematics@2.0.28) (2026-06-14)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
* **code-schematics:** preserve generated file newline ([f3a564c](https://github.com/atls/raijin/commit/f3a564c6e996caeea9b1353cdced82d3ba7928c5))
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
## [2.0.27](https://github.com/atls/raijin/compare/@atls/code-schematics@2.0.26...@atls/code-schematics@2.0.27) (2026-06-11)
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
## [2.0.26](https://github.com/atls/raijin/compare/@atls/code-schematics@2.0.26...@atls/code-schematics@2.0.26) (2026-06-11)
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
|
|
3
29
|
## [2.0.26](https://github.com/atls/raijin/compare/@atls/code-schematics@2.0.25...@atls/code-schematics@2.0.26) (2026-06-10)
|
|
4
30
|
|
|
5
31
|
|
|
@@ -2,8 +2,7 @@ const WRITE_SCHEMATIC_FACTORY_FUNCTION = `export const writeSchematicFactory = a
|
|
|
2
2
|
const content = Buffer.from(schematicFactoryCjsBase64, "base64").toString("utf-8");
|
|
3
3
|
const fs = await import('fs/promises')
|
|
4
4
|
await fs.writeFile(path, content);
|
|
5
|
-
}
|
|
6
|
-
`;
|
|
5
|
+
};`;
|
|
7
6
|
export const getGeneratedFileContent = (encodedContent) => {
|
|
8
7
|
const generatedFileContent = `// Auto-generated file
|
|
9
8
|
/* eslint-disable */
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atls/code-schematics",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.28",
|
|
4
4
|
"license": "BSD-3-Clause",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"exports": {
|
|
@@ -29,7 +29,7 @@
|
|
|
29
29
|
"strip-json-comments": "3.1.1"
|
|
30
30
|
},
|
|
31
31
|
"devDependencies": {
|
|
32
|
-
"@atls/code-runtime": "2.1.
|
|
32
|
+
"@atls/code-runtime": "2.1.34",
|
|
33
33
|
"@types/node": "24.12.2",
|
|
34
34
|
"@yarnpkg/cli": "4.14.1",
|
|
35
35
|
"@yarnpkg/core": "4.7.0",
|