@opengis/filter 0.0.11 → 0.0.12

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 (1) hide show
  1. package/package.json +4 -3
package/package.json CHANGED
@@ -1,10 +1,10 @@
1
1
  {
2
2
  "name": "@opengis/filter",
3
- "version": "0.0.11",
3
+ "version": "0.0.12",
4
4
  "type": "module",
5
- "main": "filter.js",
5
+ "main": "dist/filter.js",
6
6
  "files": [
7
- "/dist/**"
7
+ "dist"
8
8
  ],
9
9
  "scripts": {
10
10
  "lint": "eslint src --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore",
@@ -20,6 +20,7 @@
20
20
  "post-publish": "bun run scripts/post-publish.ts",
21
21
  "prepublishOnly": "bun run build && bun run prepare-publish",
22
22
  "after-publish": "bun run post-publish",
23
+ "publish": "bun run custom-publish",
23
24
  "custom-publish": "bun run build && bun run scripts/pre-publish.ts && bun publish && bun run scripts/post-publish.ts",
24
25
  "docs:preview": "npm run --prefix ./docs docs:preview"
25
26
  },