@liquidmetal-ai/drizzle 0.3.4 → 0.3.5

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,12 @@
1
1
  # @liquidmetal-ai/drizzle
2
2
 
3
+ ## 0.3.5
4
+
5
+ ### Patch Changes
6
+
7
+ - aacffc8: Fix raindrop build start/stop
8
+ - Release 0.3.5 with version checking.
9
+
3
10
  ## 0.3.3
4
11
 
5
12
  ### Patch Changes
@@ -1,2 +1,4 @@
1
+ export declare const RAINDROP_SERVICE_VERSION_HEADER = "X-Raindrop-Service-Version";
2
+ export declare const RAINDROP_CLI_VERSION_HEADER = "X-Raindrop-CLI-Version";
1
3
  export declare function urlifyOrganizationId(organizationId: string): string;
2
4
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/raindrop/index.ts"],"names":[],"mappings":"AACA,wBAAgB,oBAAoB,CAAC,cAAc,EAAE,MAAM,GAAG,MAAM,CAEnE"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/raindrop/index.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,+BAA+B,+BAA+B,CAAC;AAC5E,eAAO,MAAM,2BAA2B,2BAA2B,CAAC;AAGpE,wBAAgB,oBAAoB,CAAC,cAAc,EAAE,MAAM,GAAG,MAAM,CAEnE"}
@@ -1,3 +1,5 @@
1
+ export const RAINDROP_SERVICE_VERSION_HEADER = 'X-Raindrop-Service-Version';
2
+ export const RAINDROP_CLI_VERSION_HEADER = 'X-Raindrop-CLI-Version';
1
3
  // urlifyOrganizationId converts an organizationId for usage in URLs
2
4
  export function urlifyOrganizationId(organizationId) {
3
5
  return organizationId.replace('org_', '').toLowerCase();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@liquidmetal-ai/drizzle",
3
- "version": "0.3.4",
3
+ "version": "0.3.5",
4
4
  "description": "Raindrop core operational libraries",
5
5
  "main": "dist/index.js",
6
6
  "type": "module",
@@ -1,3 +1,6 @@
1
+ export const RAINDROP_SERVICE_VERSION_HEADER = 'X-Raindrop-Service-Version';
2
+ export const RAINDROP_CLI_VERSION_HEADER = 'X-Raindrop-CLI-Version';
3
+
1
4
  // urlifyOrganizationId converts an organizationId for usage in URLs
2
5
  export function urlifyOrganizationId(organizationId: string): string {
3
6
  return organizationId.replace('org_', '').toLowerCase();
@@ -1,6 +0,0 @@
1
-
2
- ⠙⠹
3
- > @liquidmetal-ai/drizzle@0.3.3 lint
4
- > eslint . --max-warnings=0
5
-
6
- ⠹⠙
@@ -1,262 +0,0 @@
1
-
2
- 
3
- > @liquidmetal-ai/drizzle@0.3.3 test
4
- > vitest run
5
-
6
- 
7
-  RUN  v2.1.9 /Users/bosgood/dev/src/github.com/LiquidMetal-AI/liquidmetal/packages/drizzle
8
-
9
- [?25l · src/codestore.test.ts (9)
10
- [?25l[?25l[?25l ✓ src/codestore.test.ts (9)
11
- · src/logging.test.ts (7)
12
- stdout | src/logging.test.ts > Logger > can log messages at a debug level
13
- { level: 'DEBUG', message: 'debug message', fields: {} }
14
-
15
- stdout | src/logging.test.ts > Logger > can log messages at a info level
16
- { level: 'INFO', message: 'info message', fields: {} }
17
-
18
- stdout | src/logging.test.ts > Logger > can log messages at a warn level
19
- { level: 'WARN', message: 'warn message', fields: {} }
20
-
21
- stdout | src/logging.test.ts > Logger > can log messages at an error level
22
- { level: 'ERROR', message: 'error message', fields: {} }
23
-
24
- [?25l ✓ src/codestore.test.ts (9)
25
- ✓ src/logging.test.ts (7)
26
- [?25l[?25l[?25l[?25l[?25l[?25l[?25l[?25l[?25l[?25l[?25l[?25l[?25l[?25l[?25l ✓ src/codestore.test.ts (9)
27
- ✓ src/logging.test.ts (7)
28
- · src/ulid.test.ts (8)
29
- [?25l ✓ src/codestore.test.ts (9)
30
- ✓ src/logging.test.ts (7)
31
- ✓ src/ulid.test.ts (8)
32
- [?25l[?25l[?25l[?25l[?25l[?25l[?25l[?25l · src/appify/build.test.ts (10)
33
- ✓ src/codestore.test.ts (9)
34
- ✓ src/logging.test.ts (7)
35
- ✓ src/ulid.test.ts (8)
36
- [?25l · src/appify/parse.test.ts (18)
37
- · src/appify/build.test.ts (10)
38
- · src/unsafe/framework.test.ts (7)
39
- ✓ src/codestore.test.ts (9)
40
- ✓ src/logging.test.ts (7)
41
- ✓ src/ulid.test.ts (8)
42
- [?25lstderr | src/unsafe/framework.test.ts > getPackageVersion > should return null when package is not found
43
- Error reading package version: Error: Package version not found
44
- at Module.getPackageVersion (/Users/bosgood/dev/src/github.com/LiquidMetal-AI/liquidmetal/packages/drizzle/src/unsafe/framework.ts:108:11)
45
- at /Users/bosgood/dev/src/github.com/LiquidMetal-AI/liquidmetal/packages/drizzle/src/unsafe/framework.test.ts:151:21
46
- at file:///Users/bosgood/dev/src/github.com/LiquidMetal-AI/liquidmetal/node_modules/vitest/node_modules/@vitest/runner/dist/index.js:533:5
47
- at runTest (file:///Users/bosgood/dev/src/github.com/LiquidMetal-AI/liquidmetal/node_modules/vitest/node_modules/@vitest/runner/dist/index.js:1056:11)
48
- at runSuite (file:///Users/bosgood/dev/src/github.com/LiquidMetal-AI/liquidmetal/node_modules/vitest/node_modules/@vitest/runner/dist/index.js:1205:15)
49
- at runSuite (file:///Users/bosgood/dev/src/github.com/LiquidMetal-AI/liquidmetal/node_modules/vitest/node_modules/@vitest/runner/dist/index.js:1205:15)
50
- at runFiles (file:///Users/bosgood/dev/src/github.com/LiquidMetal-AI/liquidmetal/node_modules/vitest/node_modules/@vitest/runner/dist/index.js:1262:5)
51
- at startTests (file:///Users/bosgood/dev/src/github.com/LiquidMetal-AI/liquidmetal/node_modules/vitest/node_modules/@vitest/runner/dist/index.js:1271:3)
52
- at file:///Users/bosgood/dev/src/github.com/LiquidMetal-AI/liquidmetal/node_modules/vitest/dist/chunks/runBaseTests.3qpJUEJM.js:126:11
53
- at withEnv (file:///Users/bosgood/dev/src/github.com/LiquidMetal-AI/liquidmetal/node_modules/vitest/dist/chunks/runBaseTests.3qpJUEJM.js:90:5)
54
-
55
- [?25l · src/appify/parse.test.ts (18)
56
- · src/appify/build.test.ts (10)
57
- ❯ src/unsafe/framework.test.ts (7)
58
- ❯ getPackageVersion (7)
59
- ✓ should detect npm package version
60
- ⠙ should detect yarn package version
61
- · should detect pnpm package version
62
- · should handle nested dependencies
63
- · should return null when package is not found
64
- · should search parent directories for package manager files
65
- · should handle command execution errors
66
- ✓ src/codestore.test.ts (9)
67
- ✓ src/logging.test.ts (7)
68
- ✓ src/ulid.test.ts (8)
69
- [?25l · src/appify/parse.test.ts (18)
70
- ✓ src/appify/build.test.ts (10)
71
- ❯ src/unsafe/framework.test.ts (7)
72
- ❯ getPackageVersion (7)
73
- ✓ should detect npm package version
74
- ✓ should detect yarn package version
75
- ✓ should detect pnpm package version
76
- ✓ should handle nested dependencies
77
- ✓ should return null when package is not found
78
- ✓ should search parent directories for package manager files
79
- ⠙ should handle command execution errors
80
- ⠙ [ beforeEach ]
81
- ✓ src/codestore.test.ts (9)
82
- ✓ src/logging.test.ts (7)
83
- ✓ src/ulid.test.ts (8)
84
- [?25l ✓ src/appify/parse.test.ts (18)
85
- ✓ src/appify/build.test.ts (10)
86
- ❯ src/unsafe/framework.test.ts (7)
87
- ❯ getPackageVersion (7)
88
- ✓ should detect npm package version
89
- ✓ should detect yarn package version
90
- ✓ should detect pnpm package version
91
- ✓ should handle nested dependencies
92
- ✓ should return null when package is not found
93
- ✓ should search parent directories for package manager files
94
- ⠹ should handle command execution errors
95
- ✓ src/codestore.test.ts (9)
96
- ✓ src/logging.test.ts (7)
97
- ✓ src/ulid.test.ts (8)
98
- stderr | src/unsafe/framework.test.ts > getPackageVersion > should handle command execution errors
99
- Error executing npm list command: Error: Command failed
100
- at /Users/bosgood/dev/src/github.com/LiquidMetal-AI/liquidmetal/packages/drizzle/src/unsafe/framework.test.ts:192:9
101
- at mockCall (file:///Users/bosgood/dev/src/github.com/LiquidMetal-AI/liquidmetal/node_modules/vitest/node_modules/@vitest/spy/dist/index.js:61:17)
102
- at spy (file:///Users/bosgood/dev/src/github.com/LiquidMetal-AI/liquidmetal/node_modules/tinyspy/dist/index.js:45:80)
103
- at node:internal/util:456:21
104
- at new Promise (<anonymous>)
105
- at spy (node:internal/util:442:12)
106
- at getVersionFromCommand (/Users/bosgood/dev/src/github.com/LiquidMetal-AI/liquidmetal/packages/drizzle/src/unsafe/framework.ts:69:30)
107
- at Module.getPackageVersion (/Users/bosgood/dev/src/github.com/LiquidMetal-AI/liquidmetal/packages/drizzle/src/unsafe/framework.ts:102:31)
108
- at /Users/bosgood/dev/src/github.com/LiquidMetal-AI/liquidmetal/packages/drizzle/src/unsafe/framework.test.ts:202:21
109
- at file:///Users/bosgood/dev/src/github.com/LiquidMetal-AI/liquidmetal/node_modules/vitest/node_modules/@vitest/runner/dist/index.js:533:5
110
- Error reading package version: Error: Package version not found
111
- at Module.getPackageVersion (/Users/bosgood/dev/src/github.com/LiquidMetal-AI/liquidmetal/packages/drizzle/src/unsafe/framework.ts:108:11)
112
- at /Users/bosgood/dev/src/github.com/LiquidMetal-AI/liquidmetal/packages/drizzle/src/unsafe/framework.test.ts:202:21
113
- at file:///Users/bosgood/dev/src/github.com/LiquidMetal-AI/liquidmetal/node_modules/vitest/node_modules/@vitest/runner/dist/index.js:533:5
114
- at runTest (file:///Users/bosgood/dev/src/github.com/LiquidMetal-AI/liquidmetal/node_modules/vitest/node_modules/@vitest/runner/dist/index.js:1056:11)
115
- at runSuite (file:///Users/bosgood/dev/src/github.com/LiquidMetal-AI/liquidmetal/node_modules/vitest/node_modules/@vitest/runner/dist/index.js:1205:15)
116
- at runSuite (file:///Users/bosgood/dev/src/github.com/LiquidMetal-AI/liquidmetal/node_modules/vitest/node_modules/@vitest/runner/dist/index.js:1205:15)
117
- at runFiles (file:///Users/bosgood/dev/src/github.com/LiquidMetal-AI/liquidmetal/node_modules/vitest/node_modules/@vitest/runner/dist/index.js:1262:5)
118
- at startTests (file:///Users/bosgood/dev/src/github.com/LiquidMetal-AI/liquidmetal/node_modules/vitest/node_modules/@vitest/runner/dist/index.js:1271:3)
119
- at file:///Users/bosgood/dev/src/github.com/LiquidMetal-AI/liquidmetal/node_modules/vitest/dist/chunks/runBaseTests.3qpJUEJM.js:126:11
120
- at withEnv (file:///Users/bosgood/dev/src/github.com/LiquidMetal-AI/liquidmetal/node_modules/vitest/dist/chunks/runBaseTests.3qpJUEJM.js:90:5)
121
-
122
- [?25l ✓ src/appify/parse.test.ts (18)
123
- ✓ src/appify/build.test.ts (10)
124
- ❯ src/unsafe/framework.test.ts (7)
125
- ❯ getPackageVersion (7)
126
- ✓ should detect npm package version
127
- ✓ should detect yarn package version
128
- ✓ should detect pnpm package version
129
- ✓ should handle nested dependencies
130
- ✓ should return null when package is not found
131
- ✓ should search parent directories for package manager files
132
- ⠸ should handle command execution errors
133
- ✓ src/codestore.test.ts (9)
134
- ✓ src/logging.test.ts (7)
135
- ✓ src/ulid.test.ts (8)
136
- [?25l ✓ src/appify/parse.test.ts (18)
137
- ✓ src/appify/build.test.ts (10)
138
- ❯ src/unsafe/framework.test.ts (7)
139
- ❯ getPackageVersion (7)
140
- ✓ should detect npm package version
141
- ✓ should detect yarn package version
142
- ✓ should detect pnpm package version
143
- ✓ should handle nested dependencies
144
- ✓ should return null when package is not found
145
- ✓ should search parent directories for package manager files
146
- ⠼ should handle command execution errors
147
- ✓ src/codestore.test.ts (9)
148
- ✓ src/logging.test.ts (7)
149
- ✓ src/ulid.test.ts (8)
150
- [?25l ✓ src/appify/parse.test.ts (18)
151
- ✓ src/appify/build.test.ts (10)
152
- ❯ src/unsafe/framework.test.ts (7)
153
- ❯ getPackageVersion (7)
154
- ✓ should detect npm package version
155
- ✓ should detect yarn package version
156
- ✓ should detect pnpm package version
157
- ✓ should handle nested dependencies
158
- ✓ should return null when package is not found
159
- ✓ should search parent directories for package manager files
160
- ⠴ should handle command execution errors
161
- ✓ src/codestore.test.ts (9)
162
- ✓ src/logging.test.ts (7)
163
- ✓ src/ulid.test.ts (8)
164
- [?25l ✓ src/appify/parse.test.ts (18)
165
- ✓ src/appify/build.test.ts (10)
166
- ✓ src/unsafe/framework.test.ts (7)
167
- ✓ src/codestore.test.ts (9)
168
- ✓ src/logging.test.ts (7)
169
- ✓ src/ulid.test.ts (8)
170
- [?25l[?25l[?25l[?25l[?25l · src/appify/validate.test.ts (17)
171
- ✓ src/appify/parse.test.ts (18)
172
- ✓ src/appify/build.test.ts (10)
173
- ✓ src/unsafe/framework.test.ts (7)
174
- ✓ src/codestore.test.ts (9)
175
- ✓ src/logging.test.ts (7)
176
- ✓ src/ulid.test.ts (8)
177
- [?25l[?25l[?25l ✓ src/appify/validate.test.ts (17)
178
- ✓ src/appify/parse.test.ts (18)
179
- ✓ src/appify/build.test.ts (10)
180
- ✓ src/unsafe/framework.test.ts (7)
181
- ✓ src/codestore.test.ts (9)
182
- ✓ src/logging.test.ts (7)
183
- ✓ src/ulid.test.ts (8)
184
- [?25l[?25l[?25l[?25l[?25l[?25l[?25l[?25l[?25l[?25l[?25l[?25l[?25l[?25l[?25l[?25l[?25l[?25l[?25l[?25l[?25l[?25l[?25l[?25l[?25l[?25l[?25l[?25l[?25l[?25l[?25l[?25l[?25l[?25l[?25l ✓ src/appify/validate.test.ts (17)
185
- ✓ src/appify/parse.test.ts (18)
186
- ✓ src/appify/build.test.ts (10)
187
- ✓ src/unsafe/framework.test.ts (7)
188
- ✓ src/codestore.test.ts (9)
189
- ✓ src/logging.test.ts (7)
190
- ✓ src/ulid.test.ts (8)
191
- · src/appify/index.test.ts (3)
192
- [?25l[?25l ✓ src/appify/validate.test.ts (17)
193
- ✓ src/appify/parse.test.ts (18)
194
- ✓ src/appify/build.test.ts (10)
195
- ✓ src/unsafe/framework.test.ts (7)
196
- ✓ src/codestore.test.ts (9)
197
- ✓ src/logging.test.ts (7)
198
- ✓ src/ulid.test.ts (8)
199
- ✓ src/appify/index.test.ts (3)
200
- [?25l ✓ src/appify/validate.test.ts (17)
201
- ✓ src/appify/parse.test.ts (18)
202
- ✓ src/appify/build.test.ts (10)
203
- ✓ src/unsafe/framework.test.ts (7)
204
- ✓ src/codestore.test.ts (9)
205
- ✓ src/logging.test.ts (7)
206
- ✓ src/ulid.test.ts (8)
207
- ✓ src/appify/index.test.ts (3)
208
- · src/unsafe/codestore.test.ts (1)
209
- [?25l ✓ src/appify/validate.test.ts (17)
210
- ✓ src/appify/parse.test.ts (18)
211
- ✓ src/appify/build.test.ts (10)
212
- ✓ src/unsafe/framework.test.ts (7)
213
- ✓ src/codestore.test.ts (9)
214
- ✓ src/logging.test.ts (7)
215
- ✓ src/ulid.test.ts (8)
216
- ✓ src/appify/index.test.ts (3)
217
- ❯ src/unsafe/codestore.test.ts (1)
218
- ⠙ FileSystemBundle maps to local files and their contents
219
- [?25l ✓ src/appify/validate.test.ts (17)
220
- ✓ src/appify/parse.test.ts (18)
221
- ✓ src/appify/build.test.ts (10)
222
- ✓ src/unsafe/framework.test.ts (7)
223
- ✓ src/codestore.test.ts (9)
224
- ✓ src/logging.test.ts (7)
225
- ✓ src/ulid.test.ts (8)
226
- ✓ src/appify/index.test.ts (3)
227
- ✓ src/unsafe/codestore.test.ts (1)
228
- [?25l[?25l[?25l[?25l[?25l[?25l[?25l[?25l[?25l[?25l[?25l[?25l[?25l[?25l[?25l ✓ src/appify/validate.test.ts (17)
229
- ✓ src/appify/parse.test.ts (18)
230
- ✓ src/appify/build.test.ts (10)
231
- ✓ src/unsafe/framework.test.ts (7)
232
- ✓ src/codestore.test.ts (9)
233
- ✓ src/logging.test.ts (7)
234
- ✓ src/ulid.test.ts (8)
235
- ✓ src/appify/index.test.ts (3)
236
- ✓ src/unsafe/codestore.test.ts (1)
237
- · src/raindrop/index.test.ts (1)
238
-  ✓ src/codestore.test.ts (9)
239
- ✓ src/logging.test.ts (7)
240
- ✓ src/ulid.test.ts (8)
241
- ✓ src/appify/build.test.ts (10)
242
- ✓ src/appify/index.test.ts (3)
243
- ✓ src/appify/parse.test.ts (18)
244
- ✓ src/appify/validate.test.ts (17)
245
- ✓ src/raindrop/index.test.ts (1)
246
- ✓ src/unsafe/codestore.test.ts (1)
247
- ✓ src/unsafe/framework.test.ts (7)
248
-
249
-  Test Files  10 passed (10)
250
-  Tests  81 passed (81)
251
-  Start at  17:44:40
252
-  Duration  8.02s (transform 5.58s, setup 0ms, collect 10.21s, tests 321ms, environment 6ms, prepare 8.59s)
253
-
254
- [?25h[?25h⠙
255
- > @liquidmetal-ai/drizzle@0.3.3 posttest
256
- > npm run lint
257
-
258
- ⠙⠙⠹⠸⠼⠴⠦⠧
259
- > @liquidmetal-ai/drizzle@0.3.3 lint
260
- > eslint . --max-warnings=0
261
-
262
- ⠧⠙⠙