@voyant-travel/framework-migrations 0.1.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/dist/bundle.d.ts +17 -0
- package/dist/bundle.d.ts.map +1 -0
- package/dist/bundle.js +27 -0
- package/dist/bundle.test.d.ts +2 -0
- package/dist/bundle.test.d.ts.map +1 -0
- package/dist/bundle.test.js +18 -0
- package/dist/collector.d.ts +84 -0
- package/dist/collector.d.ts.map +1 -0
- package/dist/collector.js +136 -0
- package/dist/collector.test.d.ts +2 -0
- package/dist/collector.test.d.ts.map +1 -0
- package/dist/collector.test.js +167 -0
- package/dist/index.d.ts +10 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +9 -0
- package/dist/load-folder.d.ts +15 -0
- package/dist/load-folder.d.ts.map +1 -0
- package/dist/load-folder.js +25 -0
- package/migrations/0000_framework_baseline.sql +7435 -0
- package/migrations/0001_framework_baseline.sql +1 -0
- package/migrations/0002_framework_baseline.sql +2 -0
- package/migrations/0003_framework_baseline.sql +2 -0
- package/migrations/0004_framework_baseline.sql +12 -0
- package/migrations/meta/0000_snapshot.json +68124 -0
- package/migrations/meta/0001_snapshot.json +68131 -0
- package/migrations/meta/0002_snapshot.json +68145 -0
- package/migrations/meta/0003_snapshot.json +68159 -0
- package/migrations/meta/0004_snapshot.json +67933 -0
- package/migrations/meta/_journal.json +41 -0
- package/package.json +47 -0
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": "7",
|
|
3
|
+
"dialect": "postgresql",
|
|
4
|
+
"entries": [
|
|
5
|
+
{
|
|
6
|
+
"idx": 0,
|
|
7
|
+
"version": "7",
|
|
8
|
+
"when": 1781683434217,
|
|
9
|
+
"tag": "0000_framework_baseline",
|
|
10
|
+
"breakpoints": true
|
|
11
|
+
},
|
|
12
|
+
{
|
|
13
|
+
"idx": 1,
|
|
14
|
+
"version": "7",
|
|
15
|
+
"when": 1781697751693,
|
|
16
|
+
"tag": "0001_framework_baseline",
|
|
17
|
+
"breakpoints": true
|
|
18
|
+
},
|
|
19
|
+
{
|
|
20
|
+
"idx": 2,
|
|
21
|
+
"version": "7",
|
|
22
|
+
"when": 1781711913836,
|
|
23
|
+
"tag": "0002_framework_baseline",
|
|
24
|
+
"breakpoints": true
|
|
25
|
+
},
|
|
26
|
+
{
|
|
27
|
+
"idx": 3,
|
|
28
|
+
"version": "7",
|
|
29
|
+
"when": 1781712605226,
|
|
30
|
+
"tag": "0003_framework_baseline",
|
|
31
|
+
"breakpoints": true
|
|
32
|
+
},
|
|
33
|
+
{
|
|
34
|
+
"idx": 4,
|
|
35
|
+
"version": "7",
|
|
36
|
+
"when": 1781715425179,
|
|
37
|
+
"tag": "0004_framework_baseline",
|
|
38
|
+
"breakpoints": true
|
|
39
|
+
}
|
|
40
|
+
]
|
|
41
|
+
}
|
package/package.json
ADDED
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@voyant-travel/framework-migrations",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "D.1 multi-source migration collector — applies the framework-shipped bundle then the deployment's own migrations via one version-independent (source, tag, content_hash) ledger.",
|
|
5
|
+
"license": "Apache-2.0",
|
|
6
|
+
"type": "module",
|
|
7
|
+
"exports": {
|
|
8
|
+
".": "./src/index.ts"
|
|
9
|
+
},
|
|
10
|
+
"scripts": {
|
|
11
|
+
"typecheck": "tsc --noEmit",
|
|
12
|
+
"lint": "biome check src/",
|
|
13
|
+
"test": "vitest run",
|
|
14
|
+
"build": "tsc -p tsconfig.json",
|
|
15
|
+
"clean": "rm -rf dist tsconfig.tsbuildinfo",
|
|
16
|
+
"prepack": "pnpm run build"
|
|
17
|
+
},
|
|
18
|
+
"dependencies": {},
|
|
19
|
+
"devDependencies": {
|
|
20
|
+
"@voyant-travel/voyant-typescript-config": "workspace:^",
|
|
21
|
+
"pg": "^8.13.1",
|
|
22
|
+
"@types/pg": "^8.11.10",
|
|
23
|
+
"typescript": "^6.0.2",
|
|
24
|
+
"vitest": "^4.0.0"
|
|
25
|
+
},
|
|
26
|
+
"files": [
|
|
27
|
+
"dist",
|
|
28
|
+
"migrations"
|
|
29
|
+
],
|
|
30
|
+
"publishConfig": {
|
|
31
|
+
"access": "public",
|
|
32
|
+
"exports": {
|
|
33
|
+
".": {
|
|
34
|
+
"types": "./dist/index.d.ts",
|
|
35
|
+
"import": "./dist/index.js",
|
|
36
|
+
"default": "./dist/index.js"
|
|
37
|
+
}
|
|
38
|
+
},
|
|
39
|
+
"main": "./dist/index.js",
|
|
40
|
+
"types": "./dist/index.d.ts"
|
|
41
|
+
},
|
|
42
|
+
"repository": {
|
|
43
|
+
"type": "git",
|
|
44
|
+
"url": "https://github.com/voyant-travel/voyant.git",
|
|
45
|
+
"directory": "packages/framework-migrations"
|
|
46
|
+
}
|
|
47
|
+
}
|