@express-tool/plugin-resource 1.0.0 → 1.0.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.
- package/.turbo/turbo-build.log +4 -4
- package/CHANGELOG.md +16 -0
- package/package.json +2 -2
package/.turbo/turbo-build.log
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
|
|
2
|
-
> @express-tool/plugin-resource@1.0.
|
|
2
|
+
> @express-tool/plugin-resource@1.0.2 build C:\Users\musta\Workspace\projects\express-tool\packages\plugins\resource
|
|
3
3
|
> tsup src/index.ts --format esm,cjs --clean && tsc -b --force --emitDeclarationOnly
|
|
4
4
|
|
|
5
5
|
[34mCLI[39m Building entry: src/index.ts
|
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
[34mCLI[39m Cleaning output folder
|
|
10
10
|
[34mESM[39m Build start
|
|
11
11
|
[34mCJS[39m Build start
|
|
12
|
-
[32mESM[39m [1mdist\index.mjs [22m[32m6.33 KB[39m
|
|
13
|
-
[32mESM[39m ⚡️ Build success in 169ms
|
|
14
12
|
[32mCJS[39m [1mdist\index.js [22m[32m7.49 KB[39m
|
|
15
|
-
[32mCJS[39m ⚡️ Build success in
|
|
13
|
+
[32mCJS[39m ⚡️ Build success in 90ms
|
|
14
|
+
[32mESM[39m [1mdist\index.mjs [22m[32m6.33 KB[39m
|
|
15
|
+
[32mESM[39m ⚡️ Build success in 91ms
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# @express-tool/plugin-resource
|
|
2
2
|
|
|
3
|
+
## 1.0.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Refine all plugin code templates to be production-grade. Add internal environment variable validation, graceful shutdown logic, and security hardening (non-root Docker user, JWT_SECRET production checks). Correct dependency versions and improve ESM compatibility.
|
|
8
|
+
- Updated dependencies
|
|
9
|
+
- @express-tool/core@1.0.2
|
|
10
|
+
|
|
11
|
+
## 1.0.1
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- Optimized project generation, updated dependencies, and added open-source documentation.
|
|
16
|
+
- Updated dependencies
|
|
17
|
+
- @express-tool/core@1.0.1
|
|
18
|
+
|
|
3
19
|
## 1.0.0
|
|
4
20
|
|
|
5
21
|
### Major Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@express-tool/plugin-resource",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.2",
|
|
4
4
|
"main": "dist/index.js",
|
|
5
5
|
"types": "dist/index.d.ts",
|
|
6
6
|
"repository": {
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
}
|
|
25
25
|
},
|
|
26
26
|
"dependencies": {
|
|
27
|
-
"@express-tool/core": "1.0.
|
|
27
|
+
"@express-tool/core": "1.0.2"
|
|
28
28
|
},
|
|
29
29
|
"devDependencies": {
|
|
30
30
|
"typescript": "^5.4.0",
|