@auto-engineer/model-diff 1.12.0
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/.turbo/turbo-build.log +5 -0
- package/.turbo/turbo-test.log +14 -0
- package/.turbo/turbo-type-check.log +4 -0
- package/CHANGELOG.md +17 -0
- package/LICENSE +10 -0
- package/dist/src/change-detector.d.ts +17 -0
- package/dist/src/change-detector.d.ts.map +1 -0
- package/dist/src/change-detector.js +37 -0
- package/dist/src/change-detector.js.map +1 -0
- package/dist/src/commands/detect-changes.d.ts +8 -0
- package/dist/src/commands/detect-changes.d.ts.map +1 -0
- package/dist/src/commands/detect-changes.js +72 -0
- package/dist/src/commands/detect-changes.js.map +1 -0
- package/dist/src/fingerprint.d.ts +19 -0
- package/dist/src/fingerprint.d.ts.map +1 -0
- package/dist/src/fingerprint.js +38 -0
- package/dist/src/fingerprint.js.map +1 -0
- package/dist/src/generation-state.d.ts +11 -0
- package/dist/src/generation-state.d.ts.map +1 -0
- package/dist/src/generation-state.js +33 -0
- package/dist/src/generation-state.js.map +1 -0
- package/dist/src/index.d.ts +12 -0
- package/dist/src/index.d.ts.map +1 -0
- package/dist/src/index.js +4 -0
- package/dist/src/index.js.map +1 -0
- package/dist/src/model-dependencies.d.ts +26 -0
- package/dist/src/model-dependencies.d.ts.map +1 -0
- package/dist/src/model-dependencies.js +130 -0
- package/dist/src/model-dependencies.js.map +1 -0
- package/dist/src/stable-stringify.d.ts +2 -0
- package/dist/src/stable-stringify.d.ts.map +1 -0
- package/dist/src/stable-stringify.js +19 -0
- package/dist/src/stable-stringify.js.map +1 -0
- package/dist/src/utils.d.ts +2 -0
- package/dist/src/utils.d.ts.map +1 -0
- package/dist/src/utils.js +7 -0
- package/dist/src/utils.js.map +1 -0
- package/dist/tsconfig.tsbuildinfo +1 -0
- package/ketchup-plan.md +19 -0
- package/package.json +32 -0
- package/src/change-detector.specs.ts +138 -0
- package/src/change-detector.ts +65 -0
- package/src/commands/detect-changes.specs.ts +190 -0
- package/src/commands/detect-changes.ts +112 -0
- package/src/fingerprint.specs.ts +213 -0
- package/src/fingerprint.ts +59 -0
- package/src/generation-state.specs.ts +89 -0
- package/src/generation-state.ts +46 -0
- package/src/index.ts +7 -0
- package/src/model-dependencies.specs.ts +455 -0
- package/src/model-dependencies.ts +136 -0
- package/src/stable-stringify.specs.ts +45 -0
- package/src/stable-stringify.ts +19 -0
- package/src/utils.specs.ts +24 -0
- package/src/utils.ts +6 -0
- package/tsconfig.json +10 -0
- package/vitest.config.ts +21 -0
package/vitest.config.ts
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { defineConfig } from 'vitest/config';
|
|
2
|
+
|
|
3
|
+
export default defineConfig({
|
|
4
|
+
test: {
|
|
5
|
+
globals: true,
|
|
6
|
+
environment: 'node',
|
|
7
|
+
include: ['src/**/*.specs.ts'],
|
|
8
|
+
coverage: {
|
|
9
|
+
provider: 'v8',
|
|
10
|
+
reporter: ['text', 'json', 'html'],
|
|
11
|
+
thresholds: {
|
|
12
|
+
lines: 100,
|
|
13
|
+
functions: 100,
|
|
14
|
+
branches: 100,
|
|
15
|
+
statements: 100,
|
|
16
|
+
},
|
|
17
|
+
include: ['src/**/*.ts'],
|
|
18
|
+
exclude: ['src/**/*.specs.ts', 'src/**/index.ts'],
|
|
19
|
+
},
|
|
20
|
+
},
|
|
21
|
+
});
|