@unisphere/nx 3.19.1 â 3.19.2
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.
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Migration: Add .gitignore to documentation sites
|
|
3
|
+
*
|
|
4
|
+
* Adds .gitignore files to all documentation sites with standard ignores for:
|
|
5
|
+
* - Dependencies (node_modules)
|
|
6
|
+
* - Production builds
|
|
7
|
+
* - Generated files (.docusaurus, .cache-loader)
|
|
8
|
+
* - Environment files
|
|
9
|
+
* - Log files
|
|
10
|
+
* - Claude Code local settings
|
|
11
|
+
*/
|
|
12
|
+
import { Tree } from '@nx/devkit';
|
|
13
|
+
export default function update(tree: Tree): Promise<void>;
|
|
14
|
+
//# sourceMappingURL=add-gitignore-to-documentation-sites.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"add-gitignore-to-documentation-sites.d.ts","sourceRoot":"","sources":["../../../src/migrations/3-19-1/add-gitignore-to-documentation-sites.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;GAUG;AAEH,OAAO,EAAE,IAAI,EAAuB,MAAM,YAAY,CAAC;AAEvD,wBAA8B,MAAM,CAAC,IAAI,EAAE,IAAI,GAAG,OAAO,CAAC,IAAI,CAAC,CA8E9D"}
|
|
@@ -0,0 +1,85 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* Migration: Add .gitignore to documentation sites
|
|
4
|
+
*
|
|
5
|
+
* Adds .gitignore files to all documentation sites with standard ignores for:
|
|
6
|
+
* - Dependencies (node_modules)
|
|
7
|
+
* - Production builds
|
|
8
|
+
* - Generated files (.docusaurus, .cache-loader)
|
|
9
|
+
* - Environment files
|
|
10
|
+
* - Log files
|
|
11
|
+
* - Claude Code local settings
|
|
12
|
+
*/
|
|
13
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14
|
+
exports.default = update;
|
|
15
|
+
const devkit_1 = require("@nx/devkit");
|
|
16
|
+
async function update(tree) {
|
|
17
|
+
devkit_1.logger.info('đ Adding .gitignore to documentation sites...');
|
|
18
|
+
// Content provided by user
|
|
19
|
+
const content = `# Dependencies
|
|
20
|
+
/node_modules
|
|
21
|
+
|
|
22
|
+
# Production
|
|
23
|
+
/build
|
|
24
|
+
|
|
25
|
+
# Generated files
|
|
26
|
+
.docusaurus
|
|
27
|
+
.cache-loader
|
|
28
|
+
|
|
29
|
+
# Misc
|
|
30
|
+
.DS_Store
|
|
31
|
+
.env.local
|
|
32
|
+
.env.development.local
|
|
33
|
+
.env.test.local
|
|
34
|
+
.env.production.local
|
|
35
|
+
|
|
36
|
+
npm-debug.log*
|
|
37
|
+
yarn-debug.log*
|
|
38
|
+
yarn-error.log*
|
|
39
|
+
|
|
40
|
+
.worktree
|
|
41
|
+
|
|
42
|
+
# Temporary symlink for API documentation
|
|
43
|
+
unisphere-core-link
|
|
44
|
+
|
|
45
|
+
# Note: API docs are now generated manually via scripts/generate-api-docs.sh
|
|
46
|
+
# and committed to the repository. They are NOT auto-generated during builds.
|
|
47
|
+
|
|
48
|
+
.claude/*
|
|
49
|
+
!.claude/skills
|
|
50
|
+
`;
|
|
51
|
+
const docsBasePath = 'unisphere/documentation';
|
|
52
|
+
if (!tree.exists(docsBasePath)) {
|
|
53
|
+
devkit_1.logger.info('âšī¸ No documentation sites found, skipping');
|
|
54
|
+
return;
|
|
55
|
+
}
|
|
56
|
+
const docsSites = tree.children(docsBasePath);
|
|
57
|
+
if (docsSites.length === 0) {
|
|
58
|
+
devkit_1.logger.info('âšī¸ No documentation sites found, skipping');
|
|
59
|
+
return;
|
|
60
|
+
}
|
|
61
|
+
let updatedCount = 0;
|
|
62
|
+
let createdCount = 0;
|
|
63
|
+
for (const site of docsSites) {
|
|
64
|
+
const sitePath = `${docsBasePath}/${site}`;
|
|
65
|
+
const filePath = `${sitePath}/.gitignore`;
|
|
66
|
+
try {
|
|
67
|
+
const exists = tree.exists(filePath);
|
|
68
|
+
tree.write(filePath, content);
|
|
69
|
+
if (exists) {
|
|
70
|
+
devkit_1.logger.info(`â
Updated ${filePath}`);
|
|
71
|
+
updatedCount++;
|
|
72
|
+
}
|
|
73
|
+
else {
|
|
74
|
+
devkit_1.logger.info(`â
Created ${filePath}`);
|
|
75
|
+
createdCount++;
|
|
76
|
+
}
|
|
77
|
+
}
|
|
78
|
+
catch (error) {
|
|
79
|
+
const errorMessage = error instanceof Error ? error.message : 'Unknown error';
|
|
80
|
+
devkit_1.logger.warn(`â ī¸ Failed to update ${filePath}: ${errorMessage}`);
|
|
81
|
+
}
|
|
82
|
+
}
|
|
83
|
+
devkit_1.logger.info(`â
Processed ${docsSites.length} documentation site(s): ${createdCount} created, ${updatedCount} updated`);
|
|
84
|
+
await (0, devkit_1.formatFiles)(tree);
|
|
85
|
+
}
|
package/package.json
CHANGED