@shibanet0/datamitsu-config 0.0.10 → 0.1.1
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/datamitsu.config.js +1110 -193
- package/dist/datamitsu-config/{cmdInit.d.ts → cmdSetup.d.ts} +1 -1
- package/dist/datamitsu-config/constants.d.ts +1 -0
- package/dist/datamitsu-config/globs.d.ts +4 -0
- package/dist/datamitsu-config/ignore.d.ts +1 -1
- package/dist/s0/index.js +1 -2
- package/package.json +4 -5
|
@@ -1,7 +1,10 @@
|
|
|
1
|
+
export declare const actionlintGlobs: string[];
|
|
1
2
|
export declare const dockerfileGlobs: string[];
|
|
2
3
|
export declare const dotenvLinterGlobs: string[];
|
|
3
4
|
export declare const eslintGlobs: string[];
|
|
5
|
+
export declare const helmGlobs: string[];
|
|
4
6
|
export declare const jsonGlobs: string[];
|
|
7
|
+
export declare const makefileGlobs: string[];
|
|
5
8
|
export declare const markdownGlobs: string[];
|
|
6
9
|
export declare const jsonExcludeGlobs: string[];
|
|
7
10
|
export declare const oxlintGlobs: string[];
|
|
@@ -9,6 +12,7 @@ export declare const oxfmtGlobs: string[];
|
|
|
9
12
|
export declare const packageJsonGlobs: string[];
|
|
10
13
|
export declare const prettierGlobs: string[];
|
|
11
14
|
export declare const propertiesGlobs: string[];
|
|
15
|
+
export declare const protoGlobs: string[];
|
|
12
16
|
export declare const shellGlobs: string[];
|
|
13
17
|
export declare const tomlGlobs: string[];
|
|
14
18
|
export declare const typescriptGlobs: string[];
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export declare const filterIgnore: (content: string) => string;
|
|
2
|
-
export declare const ignoreGroups: tools.Ignore.IgnoreMap<"Build outputs" | "Cache & temporary files" | "Claude Code project files" | "Codex CLI project files" | "Dependencies" | "Environment" | "Golang specific" | "IDE & OS" | "Logs" | "Other" | "Pulumi" | "ralphex progress logs" | "Security & Secrets" | "Testing">;
|
|
2
|
+
export declare const ignoreGroups: tools.Ignore.IgnoreMap<"Build outputs" | "Cache & temporary files" | "Claude Code project files" | "Codex CLI project files" | "Dependencies" | "Environment" | "Golang specific" | "IDE & OS" | "Logs" | "Other" | "Pulumi" | "ralphex progress logs" | "Security & Secrets" | "Terraform & Terragrunt" | "Testing">;
|
package/dist/s0/index.js
CHANGED
|
@@ -183,8 +183,7 @@ const pulumiCleanup = async () => {
|
|
|
183
183
|
const filesToRemove = [];
|
|
184
184
|
for (const encFile of encryptedFiles) {
|
|
185
185
|
const originalFile = getDecryptedPath(encFile);
|
|
186
|
-
if (
|
|
187
|
-
if (await verifyEncryptedFile(encFile, datamitsu, GPG_TTY)) filesToRemove.push(originalFile);
|
|
186
|
+
if (await fs.access(originalFile).then(() => true).catch(() => false)) if (await verifyEncryptedFile(encFile, datamitsu, GPG_TTY)) filesToRemove.push(originalFile);
|
|
188
187
|
else console.warn(`⚠️ Warning: ${path.relative(process.cwd(), encFile)} failed verification, keeping original`);
|
|
189
188
|
}
|
|
190
189
|
if (filesToRemove.length === 0) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@shibanet0/datamitsu-config",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"description": "Shared datamitsu configuration with 79+ managed development tools",
|
|
5
5
|
"keywords": [],
|
|
6
6
|
"repository": {
|
|
@@ -15,6 +15,7 @@
|
|
|
15
15
|
"types": "./dist/datamitsu-api/index.d.ts",
|
|
16
16
|
"default": "./dist/datamitsu-api/index.js"
|
|
17
17
|
},
|
|
18
|
+
"./package.json": "./package.json",
|
|
18
19
|
"./tsconfig/base.json": "./tsconfig/base.json",
|
|
19
20
|
"./tsconfig/infra-pulumi.json": "./tsconfig/infra-pulumi.json",
|
|
20
21
|
"./tsconfig/library.json": "./tsconfig/library.json",
|
|
@@ -24,7 +25,6 @@
|
|
|
24
25
|
"./tsconfig/service-worker.json": "./tsconfig/service-worker.json",
|
|
25
26
|
"./tsconfig/shared-library.json": "./tsconfig/shared-library.json",
|
|
26
27
|
"./tsconfig/shared-react-library.json": "./tsconfig/shared-react-library.json",
|
|
27
|
-
"./package.json": "./package.json",
|
|
28
28
|
"./type-fest": {
|
|
29
29
|
"import": {
|
|
30
30
|
"types": "./dist/type-fest/index.d.ts"
|
|
@@ -52,7 +52,7 @@
|
|
|
52
52
|
],
|
|
53
53
|
"dependencies": {
|
|
54
54
|
"@commander-js/extra-typings": "14.0.0",
|
|
55
|
-
"@datamitsu/datamitsu": "0.
|
|
55
|
+
"@datamitsu/datamitsu": "0.1.2",
|
|
56
56
|
"commander": "14.0.3",
|
|
57
57
|
"execa": "9.6.1",
|
|
58
58
|
"fast-glob": "3.3.3",
|
|
@@ -61,7 +61,6 @@
|
|
|
61
61
|
"typescript": "6.0.3"
|
|
62
62
|
},
|
|
63
63
|
"engines": {
|
|
64
|
-
"node": ">=
|
|
65
|
-
"pnpm": ">=11.5.0"
|
|
64
|
+
"node": ">=22.12.0"
|
|
66
65
|
}
|
|
67
66
|
}
|