@objectstack/sveltekit 4.0.2 → 4.0.4

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.
@@ -1,5 +1,5 @@
1
1
 
2
- > @objectstack/sveltekit@4.0.2 build /home/runner/work/framework/framework/packages/adapters/sveltekit
2
+ > @objectstack/sveltekit@4.0.4 build /home/runner/work/framework/framework/packages/adapters/sveltekit
3
3
  > tsup --config ../../../tsup.config.ts
4
4
 
5
5
  CLI Building entry: src/index.ts
@@ -12,11 +12,11 @@
12
12
  CJS Build start
13
13
  ESM dist/index.mjs 4.78 KB
14
14
  ESM dist/index.mjs.map 10.84 KB
15
- ESM ⚡️ Build success in 48ms
15
+ ESM ⚡️ Build success in 74ms
16
16
  CJS dist/index.js 5.83 KB
17
17
  CJS dist/index.js.map 10.88 KB
18
- CJS ⚡️ Build success in 54ms
18
+ CJS ⚡️ Build success in 72ms
19
19
  DTS Build start
20
- DTS ⚡️ Build success in 12918ms
20
+ DTS ⚡️ Build success in 13015ms
21
21
  DTS dist/index.d.mts 1.65 KB
22
22
  DTS dist/index.d.ts 1.65 KB
package/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # @objectstack/sveltekit
2
2
 
3
+ ## 4.0.4
4
+
5
+ ### Patch Changes
6
+
7
+ - @objectstack/runtime@4.0.4
8
+
9
+ ## 4.0.3
10
+
11
+ ### Patch Changes
12
+
13
+ - @objectstack/runtime@4.0.3
14
+
3
15
  ## 4.0.2
4
16
 
5
17
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@objectstack/sveltekit",
3
- "version": "4.0.2",
3
+ "version": "4.0.4",
4
4
  "license": "Apache-2.0",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -12,14 +12,14 @@
12
12
  }
13
13
  },
14
14
  "peerDependencies": {
15
- "@sveltejs/kit": "^2.56.1",
16
- "@objectstack/runtime": "^4.0.2"
15
+ "@sveltejs/kit": "^2.57.1",
16
+ "@objectstack/runtime": "^4.0.4"
17
17
  },
18
18
  "devDependencies": {
19
- "@sveltejs/kit": "^2.56.1",
19
+ "@sveltejs/kit": "^2.57.1",
20
20
  "typescript": "^6.0.2",
21
- "vitest": "^4.1.2",
22
- "@objectstack/runtime": "4.0.2"
21
+ "vitest": "^4.1.4",
22
+ "@objectstack/runtime": "4.0.4"
23
23
  },
24
24
  "scripts": {
25
25
  "build": "tsup --config ../../../tsup.config.ts",
@@ -176,6 +176,7 @@ describe('createRequestHandler', () => {
176
176
  undefined,
177
177
  expect.any(Object),
178
178
  expect.objectContaining({ request: expect.anything() }),
179
+ '/api',
179
180
  );
180
181
  });
181
182
  });
@@ -191,6 +192,7 @@ describe('createRequestHandler', () => {
191
192
  undefined,
192
193
  expect.any(Object),
193
194
  expect.objectContaining({ request: expect.anything() }),
195
+ '/api',
194
196
  );
195
197
  });
196
198
 
@@ -205,6 +207,7 @@ describe('createRequestHandler', () => {
205
207
  body,
206
208
  expect.any(Object),
207
209
  expect.objectContaining({ request: expect.anything() }),
210
+ '/api',
208
211
  );
209
212
  });
210
213