wildpig 1.0.9 → 1.0.10

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/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "1.0.9",
2
+ "version": "1.0.10",
3
3
  "scripts": {
4
4
  "dev": "export NODE_ENV=development && bun --hot run index.ts",
5
5
  "prebuild": "bun run scripts/run-prebuild.ts",
@@ -94,6 +94,6 @@ export const genMetaRoutes = async () => {
94
94
  for(const route in routeScripts) {
95
95
  text += ` "${route}": require("${routeScripts[route]}").getMeta, \n`;
96
96
  }
97
- text += "},";
97
+ text += "}";
98
98
  writeFileSync("./build/built-meta-routes.ts", text);
99
99
  }