@makeswift/runtime 0.16.0-canary.6 → 0.16.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.
@@ -36,7 +36,7 @@ async function handler(...args) {
36
36
  const supportsPreviewMode = (0, import_ts_pattern.match)(args).with(routeHandlerPattern, () => false).with(apiRoutePattern, () => true).exhaustive();
37
37
  const supportsDraftMode = (0, import_ts_pattern.match)(args).with(routeHandlerPattern, () => true).with(apiRoutePattern, () => false).exhaustive();
38
38
  const body = {
39
- version: "0.16.0-canary.6",
39
+ version: "0.16.1",
40
40
  previewMode: supportsPreviewMode,
41
41
  draftMode: supportsDraftMode,
42
42
  interactionMode: true,
@@ -13,7 +13,7 @@ async function handler(...args) {
13
13
  const supportsPreviewMode = match(args).with(routeHandlerPattern, () => false).with(apiRoutePattern, () => true).exhaustive();
14
14
  const supportsDraftMode = match(args).with(routeHandlerPattern, () => true).with(apiRoutePattern, () => false).exhaustive();
15
15
  const body = {
16
- version: "0.16.0-canary.6",
16
+ version: "0.16.1",
17
17
  previewMode: supportsPreviewMode,
18
18
  draftMode: supportsDraftMode,
19
19
  interactionMode: true,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@makeswift/runtime",
3
- "version": "0.16.0-canary.6",
3
+ "version": "0.16.1",
4
4
  "license": "MIT",
5
5
  "files": [
6
6
  "dist",
@@ -106,8 +106,6 @@
106
106
  "@emotion/server": "^11.4.0",
107
107
  "@emotion/sheet": "^1.0.3",
108
108
  "@emotion/utils": "^1.0.0",
109
- "@makeswift/next-plugin": "0.3.0",
110
- "@makeswift/prop-controllers": "^0.1.0-canary.5",
111
109
  "@popmotion/popcorn": "^0.4.4",
112
110
  "@types/is-hotkey": "^0.1.7",
113
111
  "@types/use-sync-external-store": "^0.0.3",
@@ -139,7 +137,9 @@
139
137
  "ts-pattern": "^5.0.5",
140
138
  "use-sync-external-store": "^1.0.0-rc.0",
141
139
  "uuid": "^9.0.0",
142
- "zod": "^3.21.4"
140
+ "zod": "^3.21.4",
141
+ "@makeswift/next-plugin": "0.3.0",
142
+ "@makeswift/prop-controllers": "0.1.1"
143
143
  },
144
144
  "devDependencies": {
145
145
  "@emotion/jest": "^11.11.0",
@@ -175,7 +175,7 @@
175
175
  "scripts": {
176
176
  "dev": "concurrently -k 'tsc --watch --preserveWatchOutput' 'tsup --watch'",
177
177
  "clean": "rm -rf dist",
178
- "build": "pnpm run clean && tsc && tsup",
178
+ "build": "tsc && tsup",
179
179
  "generate": "graphql-codegen --config codegen.yml",
180
180
  "test": "jest",
181
181
  "test:watch": "jest --watch",