vite-plugin-rpx 0.11.4 → 0.11.6

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.js +16609 -8071
  2. package/package.json +6 -9
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "vite-plugin-rpx",
3
3
  "type": "module",
4
- "version": "0.11.4",
4
+ "version": "0.11.6",
5
5
  "description": "A modern and smart reverse proxy. Vite plugin.",
6
6
  "author": "Chris Breuer <chris@stacksjs.org>",
7
7
  "license": "MIT",
@@ -39,24 +39,21 @@
39
39
  ],
40
40
  "scripts": {
41
41
  "build": "bun build.ts",
42
- "lint": "bunx --bun eslint .",
43
- "lint:fix": "bunx --bun eslint . --fix",
42
+ "lint": "bunx --bun pickier .",
43
+ "lint:fix": "bunx --bun pickier . --fix",
44
44
  "changelog": "changelogen --output CHANGELOG.md",
45
45
  "prepublishOnly": "bun --bun run build",
46
46
  "test": "bun test",
47
47
  "typecheck": "bunx tsc --noEmit"
48
48
  },
49
49
  "dependencies": {
50
- "@stacksjs/rpx": "0.11.4",
51
- "@stacksjs/tlsx": "^0.13.0"
52
- },
53
- "devDependencies": {
54
- "bun-plugin-dtsx": "^0.21.17"
50
+ "@stacksjs/rpx": "0.11.6",
51
+ "@stacksjs/tlsx": "^0.13.6"
55
52
  },
56
53
  "simple-git-hooks": {
57
54
  "pre-commit": "bunx lint-staged"
58
55
  },
59
56
  "lint-staged": {
60
- "*.{js,ts}": "bunx eslint . --fix"
57
+ "*.{js,ts}": "bunx --bun pickier . --fix"
61
58
  }
62
59
  }