web_plsql 1.3.0 → 1.3.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/frontend/assets/{main-0oxRTIkL.js → main-C8GKnEhz.js} +4 -4
- package/dist/frontend/assets/main-C8GKnEhz.js.br +0 -0
- package/dist/frontend/assets/{main-0oxRTIkL.js.gz → main-C8GKnEhz.js.gz} +0 -0
- package/dist/frontend/assets/{main-TYgLak6O.css → main-bU4x_yEW.css} +1 -1
- package/dist/frontend/assets/main-bU4x_yEW.css.br +0 -0
- package/dist/frontend/assets/main-bU4x_yEW.css.gz +0 -0
- package/dist/frontend/index.html +2 -2
- package/dist/frontend/index.html.br +0 -0
- package/dist/frontend/index.html.gz +0 -0
- package/dist/index.mjs +94 -83
- package/dist/index.mjs.map +1 -1
- package/package.json +11 -8
- package/dist/frontend/assets/main-0oxRTIkL.js.br +0 -0
- package/dist/frontend/assets/main-TYgLak6O.css.br +0 -0
- package/dist/frontend/assets/main-TYgLak6O.css.gz +0 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "web_plsql",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.1",
|
|
4
4
|
"author": "Dieter Oberkofler <dieter.oberkofler@gmail.com>",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"description": "The Express Middleware for Oracle PL/SQL",
|
|
@@ -47,7 +47,7 @@
|
|
|
47
47
|
"dev": "concurrently -n backend,frontend -c blue,green \"npm:dev:backend\" \"npm:dev:frontend\"",
|
|
48
48
|
"dev:backend": "node --experimental-strip-types --no-warnings dev/server.ts",
|
|
49
49
|
"dev:frontend": "vite",
|
|
50
|
-
"lint": "tsc
|
|
50
|
+
"lint": "tsc && eslint --no-cache . && prettier --check .",
|
|
51
51
|
"knip:backend": "knip --config knip.backend.config.ts",
|
|
52
52
|
"knip:frontend": "knip --config knip.frontend.config.ts",
|
|
53
53
|
"test": "vitest run",
|
|
@@ -58,7 +58,7 @@
|
|
|
58
58
|
"test:e2e:debug": "playwright test --debug",
|
|
59
59
|
"stylelint": "stylelint \"src/frontend/**/*.css\"",
|
|
60
60
|
"clean": "shx rm -f *.tgz && shx rm -f *.log",
|
|
61
|
-
"ci": "npm run clean && npm run lint && npm run build && npm run stylelint && npm run
|
|
61
|
+
"ci": "npm run clean && npm run lint && npm run build && npm run stylelint && npm run test:coverage && npm run test:e2e && npm run knip:backend && npm run knip:frontend",
|
|
62
62
|
"image-build": "cd docker && docker build --no-cache --progress=plain --tag=web_plsql .",
|
|
63
63
|
"image-save": "cd docker && docker save web_plsql > web_plsql.tar",
|
|
64
64
|
"pack:dev": "VERSION=$(node -p 'require(\"./package.json\").version'); npm pack; mv web_plsql-$VERSION.tgz web_plsql-dev.tgz"
|
|
@@ -81,7 +81,7 @@
|
|
|
81
81
|
},
|
|
82
82
|
"devDependencies": {
|
|
83
83
|
"@playwright/test": "1.58.2",
|
|
84
|
-
"@tailwindcss/vite": "4.
|
|
84
|
+
"@tailwindcss/vite": "4.2.0",
|
|
85
85
|
"@types/compression": "1.8.1",
|
|
86
86
|
"@types/cookie-parser": "1.4.10",
|
|
87
87
|
"@types/cors": "2.8.19",
|
|
@@ -92,21 +92,24 @@
|
|
|
92
92
|
"@types/oracledb": "6.10.1",
|
|
93
93
|
"@types/supertest": "6.0.3",
|
|
94
94
|
"@vitest/coverage-v8": "4.0.18",
|
|
95
|
+
"@vitest/eslint-plugin": "1.6.9",
|
|
95
96
|
"cheerio": "1.2.0",
|
|
96
97
|
"concurrently": "9.2.1",
|
|
97
98
|
"eslint": "9.39.2",
|
|
98
|
-
"eslint-plugin-jsdoc": "62.
|
|
99
|
-
"
|
|
99
|
+
"eslint-plugin-jsdoc": "62.6.0",
|
|
100
|
+
"eslint-plugin-regexp": "3.0.0",
|
|
101
|
+
"eslint-plugin-unicorn": "63.0.0",
|
|
102
|
+
"knip": "5.84.1",
|
|
100
103
|
"oracledb": "6.10.0",
|
|
101
104
|
"prettier": "3.8.1",
|
|
102
105
|
"shx": "0.4.0",
|
|
103
106
|
"stylelint": "17.3.0",
|
|
104
107
|
"stylelint-config-standard": "40.0.0",
|
|
105
108
|
"supertest": "7.2.2",
|
|
106
|
-
"tailwindcss": "4.
|
|
109
|
+
"tailwindcss": "4.2.0",
|
|
107
110
|
"tsdown": "0.20.3",
|
|
108
111
|
"typescript": "5.9.3",
|
|
109
|
-
"typescript-eslint": "8.
|
|
112
|
+
"typescript-eslint": "8.56.0",
|
|
110
113
|
"vite": "7.3.1",
|
|
111
114
|
"vite-plugin-compression2": "2.4.0",
|
|
112
115
|
"vitest": "4.0.18"
|
|
Binary file
|
|
Binary file
|
|
Binary file
|