astro-loader-pocketbase 3.1.2-next.1 → 3.1.2-next.2

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.
Files changed (2) hide show
  1. package/dist/index.mjs +1 -1
  2. package/package.json +13 -10
package/dist/index.mjs CHANGED
@@ -277,7 +277,7 @@ async function liveEntryLoader(id, options, token) {
277
277
  }
278
278
  //#endregion
279
279
  //#region package.json
280
- var version = "3.1.1";
280
+ var version = "3.1.2-next.2";
281
281
  //#endregion
282
282
  //#region src/utils/should-refresh.ts
283
283
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "astro-loader-pocketbase",
3
- "version": "3.1.2-next.1",
3
+ "version": "3.1.2-next.2",
4
4
  "description": "A content loader for Astro that uses the PocketBase API",
5
5
  "keywords": [
6
6
  "astro",
@@ -39,7 +39,7 @@
39
39
  "lint": "oxlint",
40
40
  "lint:fix": "oxlint --fix",
41
41
  "prepare": "husky",
42
- "prepublish": "npm run build",
42
+ "prepublishOnly": "npm run build",
43
43
  "test": "vitest run",
44
44
  "test:e2e": "vitest run $(find test -name '*.e2e-spec.ts')",
45
45
  "test:e2e:pocketbase": "npm run test:e2e:setup && ./.pocketbase/pocketbase serve",
@@ -51,19 +51,19 @@
51
51
  "typecheck": "npx @typescript/native-preview --noEmit -p src/tsconfig.json && npx @typescript/native-preview --noEmit -p test/tsconfig.json"
52
52
  },
53
53
  "devDependencies": {
54
- "@commitlint/cli": "21.0.1",
55
- "@commitlint/config-conventional": "21.0.1",
54
+ "@commitlint/cli": "21.0.2",
55
+ "@commitlint/config-conventional": "21.0.2",
56
56
  "@types/node": "24.12.4",
57
57
  "@vitest/coverage-v8": "4.1.7",
58
- "astro": "6.3.7",
58
+ "astro": "6.4.2",
59
59
  "globals": "17.6.0",
60
60
  "husky": "9.1.7",
61
- "lint-staged": "17.0.5",
62
- "oxfmt": "0.51.0",
63
- "oxlint": "1.66.0",
61
+ "lint-staged": "17.0.6",
62
+ "oxfmt": "0.52.0",
63
+ "oxlint": "1.67.0",
64
64
  "oxlint-tsgolint": "0.23.0",
65
65
  "publint": "0.3.21",
66
- "tsdown": "0.22.0",
66
+ "tsdown": "0.22.1",
67
67
  "vitest": "4.1.7",
68
68
  "zod-to-ts": "2.0.0"
69
69
  },
@@ -74,5 +74,8 @@
74
74
  "engines": {
75
75
  "node": ">=22.12.0"
76
76
  },
77
- "packageManager": "npm@11.15.0"
77
+ "packageManager": "npm@11.16.0",
78
+ "allowScripts": {
79
+ "esbuild@0.27.7": true
80
+ }
78
81
  }