@stacksjs/rpx 0.8.0 → 0.8.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.
- package/dist/bin/cli.js +1 -2
- package/dist/{chunk-dfsxt9xp.js → chunk-kbhf94ag.js} +161 -161
- package/dist/src/index.js +1 -2
- package/package.json +13 -8
package/dist/src/index.js
CHANGED
|
@@ -1,2 +1 @@
|
|
|
1
|
-
|
|
2
|
-
import{A as Q,B as R,C as S,D as T,E as o,c as r,d as j,e as k,f as n,g as q,h as v,i as w,j as y,k as z,l as A,m as B,n as C,o as D,p as E,q as F,r as G,s as H,t as I,u as J,v as K,w as L,x as M,y as N,z as O}from"../chunk-dfsxt9xp.js";var i=o;export{Q as startServer,T as startProxy,o as startProxies,S as startHttpRedirectServer,R as setupReverseProxy,z as safeDeleteFile,E as resolveSSLPaths,C as removeHosts,I as loadSSLConfig,n as isValidRootCA,y as isSingleProxyOptions,w as isMultiProxyOptions,v as isMultiProxyConfig,M as httpsConfig,A as hostsFilePath,K as getSSLConfig,q as getPrimaryDomain,H as getAllDomains,F as generateWildcardPatterns,G as generateSSLPaths,J as generateCertificate,k as extractHostname,i as default,j as debugLog,r as config,N as cleanupCertificates,O as cleanup,D as checkHosts,L as checkExistingCertificates,B as addHosts};
|
|
1
|
+
import{A as Q,B as R,C as S,D as T,E as o,c as r,d as j,e as k,f as n,g as q,h as v,i as w,j as y,k as z,l as A,m as B,n as C,o as D,p as E,q as F,r as G,s as H,t as I,u as J,v as K,w as L,x as M,y as N,z as O}from"../chunk-kbhf94ag.js";var i=o;export{Q as startServer,T as startProxy,o as startProxies,S as startHttpRedirectServer,R as setupReverseProxy,z as safeDeleteFile,E as resolveSSLPaths,C as removeHosts,I as loadSSLConfig,n as isValidRootCA,y as isSingleProxyOptions,w as isMultiProxyOptions,v as isMultiProxyConfig,M as httpsConfig,A as hostsFilePath,K as getSSLConfig,q as getPrimaryDomain,H as getAllDomains,F as generateWildcardPatterns,G as generateSSLPaths,J as generateCertificate,k as extractHostname,i as default,j as debugLog,r as config,N as cleanupCertificates,O as cleanup,D as checkHosts,L as checkExistingCertificates,B as addHosts};
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stacksjs/rpx",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.8.
|
|
4
|
+
"version": "0.8.1",
|
|
5
5
|
"description": "A modern and smart reverse proxy.",
|
|
6
6
|
"author": "Chris Breuer <chris@stacksjs.org>",
|
|
7
7
|
"license": "MIT",
|
|
@@ -45,8 +45,8 @@
|
|
|
45
45
|
"compile:windows-x64": "bun build ./bin/cli.ts --compile --minify --target=bun-windows-x64 --outfile bin/rpx-windows-x64.exe",
|
|
46
46
|
"compile:darwin-x64": "bun build ./bin/cli.ts --compile --minify --target=bun-darwin-x64 --outfile bin/rpx-darwin-x64",
|
|
47
47
|
"compile:darwin-arm64": "bun build ./bin/cli.ts --compile --minify --target=bun-darwin-arm64 --outfile bin/rpx-darwin-arm64",
|
|
48
|
-
"lint": "bunx eslint .",
|
|
49
|
-
"lint:fix": "bunx eslint . --fix",
|
|
48
|
+
"lint": "bunx --bun eslint --flag unstable_ts_config .",
|
|
49
|
+
"lint:fix": "bunx --bun eslint --flag unstable_ts_config . --fix",
|
|
50
50
|
"fresh": "bunx rimraf node_modules/ bun.lock && bun i",
|
|
51
51
|
"changelog": "bunx changelogen --output CHANGELOG.md",
|
|
52
52
|
"prepublishOnly": "bun --bun run build && bun run compile:all",
|
|
@@ -57,23 +57,28 @@
|
|
|
57
57
|
"build:docs": "bun --bun vitepress build docs",
|
|
58
58
|
"preview:docs": "bun --bun vitepress preview docs"
|
|
59
59
|
},
|
|
60
|
-
"dependencies": {
|
|
61
|
-
"@stacksjs/tlsx": "^0.8.5"
|
|
62
|
-
},
|
|
63
60
|
"devDependencies": {
|
|
61
|
+
"@iconify-json/carbon": "^1.2.5",
|
|
62
|
+
"@shikijs/vitepress-twoslash": "^1.24.2",
|
|
64
63
|
"@stacksjs/cli": "^0.68.2",
|
|
65
|
-
"@stacksjs/eslint-config": "^3.
|
|
64
|
+
"@stacksjs/eslint-config": "^3.12.0-beta.4",
|
|
66
65
|
"@stacksjs/storage": "^0.68.2",
|
|
66
|
+
"@stacksjs/tlsx": "^0.8.5",
|
|
67
67
|
"@types/bun": "^1.1.14",
|
|
68
|
+
"@vite-pwa/vitepress": "^0.5.3",
|
|
68
69
|
"bun-config": "^0.3.2",
|
|
69
70
|
"bun-plugin-dtsx": "^0.21.9",
|
|
70
71
|
"typescript": "^5.7.2",
|
|
72
|
+
"unocss": "0.61.0",
|
|
73
|
+
"unplugin-icons": "^0.22.0",
|
|
74
|
+
"unplugin-vue-components": "^0.28.0",
|
|
75
|
+
"vite-plugin-pwa": "^0.21.1",
|
|
71
76
|
"vitepress": "^1.5.0"
|
|
72
77
|
},
|
|
73
78
|
"simple-git-hooks": {
|
|
74
79
|
"pre-commit": "bunx lint-staged"
|
|
75
80
|
},
|
|
76
81
|
"lint-staged": {
|
|
77
|
-
"*.{js,ts}": "bunx eslint . --fix"
|
|
82
|
+
"*.{js,ts}": "bunx eslint --flag unstable_ts_config . --fix"
|
|
78
83
|
}
|
|
79
84
|
}
|