@dpuse/dpuse-development 0.3.496 → 0.3.500
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/dpuse-development.es.js +1616 -1638
- package/dist/dpuse-development.es.js.map +1 -1
- package/dist/types/src/index.d.ts +1 -1
- package/package.json +18 -18
- package/vite.config.ts +1 -1
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
export declare function buildDirectoryIndex(id: string): Promise<void>;
|
|
2
1
|
export { buildProject, releaseProject, syncProjectWithGitHub, testProject } from './operations/manageProject';
|
|
3
2
|
export { auditDependencies } from './operations/auditDependencies';
|
|
4
3
|
export { checkDependencies } from './operations/checkDependencies';
|
|
@@ -6,3 +5,4 @@ export { documentDependencies } from './operations/documentDependencies';
|
|
|
6
5
|
export { formatCode } from './operations/formatCode';
|
|
7
6
|
export { lintCode } from './operations/lintCode';
|
|
8
7
|
export { updateDPUseDependencies } from './operations/updateDPUseDependencies';
|
|
8
|
+
export { uploadDirectoryToR2 } from './utilities/cloudflare';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dpuse/dpuse-development",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.500",
|
|
4
4
|
"description": "Actions for managing DPUse projects.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "Jonathan Terrell <terrell.jm@gmail.com>",
|
|
@@ -41,40 +41,40 @@
|
|
|
41
41
|
"vitest.config.ts"
|
|
42
42
|
],
|
|
43
43
|
"dependencies": {
|
|
44
|
-
"@dpuse/dpuse-shared": "^0.3.
|
|
44
|
+
"@dpuse/dpuse-shared": "^0.3.668",
|
|
45
45
|
"acorn": "^8.16.0",
|
|
46
46
|
"acorn-typescript": "^1.4.13",
|
|
47
47
|
"acorn-walk": "^8.3.5",
|
|
48
|
-
"nanoid": "^5.1.
|
|
49
|
-
"valibot": "^1.
|
|
48
|
+
"nanoid": "^5.1.11",
|
|
49
|
+
"valibot": "^1.4.0"
|
|
50
50
|
},
|
|
51
51
|
"devDependencies": {
|
|
52
|
-
"@dpuse/eslint-config-dpuse": "^1.0.
|
|
52
|
+
"@dpuse/eslint-config-dpuse": "^1.0.66",
|
|
53
53
|
"@types/eslint-plugin-security": "^3.0.1",
|
|
54
|
-
"@types/node": "^25.
|
|
55
|
-
"@typescript-eslint/eslint-plugin": "^8.59.
|
|
56
|
-
"@typescript-eslint/parser": "^8.59.
|
|
57
|
-
"eslint": "^
|
|
54
|
+
"@types/node": "^25.7.0",
|
|
55
|
+
"@typescript-eslint/eslint-plugin": "^8.59.3",
|
|
56
|
+
"@typescript-eslint/parser": "^8.59.3",
|
|
57
|
+
"eslint": "^10.3.0",
|
|
58
58
|
"eslint-import-resolver-typescript": "^4.4.4",
|
|
59
|
-
"eslint-plugin-import": "^
|
|
59
|
+
"eslint-plugin-import-x": "^4.16.2",
|
|
60
60
|
"eslint-plugin-security": "^4.0.0",
|
|
61
61
|
"eslint-plugin-sonarjs": "^4.0.3",
|
|
62
|
-
"eslint-plugin-unicorn": "^
|
|
63
|
-
"jiti": "^2.
|
|
64
|
-
"license-downloader": "^
|
|
62
|
+
"eslint-plugin-unicorn": "^64.0.0",
|
|
63
|
+
"jiti": "^2.7.0",
|
|
64
|
+
"license-downloader": "^2.0.0",
|
|
65
65
|
"license-report": "^6.8.2",
|
|
66
66
|
"license-report-check": "^1.0.0",
|
|
67
67
|
"license-report-recursive": "^6.8.4",
|
|
68
|
-
"npm-check-updates": "^
|
|
68
|
+
"npm-check-updates": "^22.2.0",
|
|
69
69
|
"owasp-dependency-check": "^1.0.1",
|
|
70
70
|
"prettier": "^3.8.3",
|
|
71
71
|
"rollup-plugin-visualizer": "^7.0.1",
|
|
72
72
|
"sonda": "^0.11.1",
|
|
73
73
|
"type-fest": "^5.6.0",
|
|
74
|
-
"typescript": "^
|
|
75
|
-
"vite": "^8.0.
|
|
76
|
-
"vite-plugin-dts": "^
|
|
77
|
-
"vitest": "^4.1.
|
|
74
|
+
"typescript": "^6.0.3",
|
|
75
|
+
"vite": "^8.0.12",
|
|
76
|
+
"vite-plugin-dts": "^5.0.0",
|
|
77
|
+
"vitest": "^4.1.6"
|
|
78
78
|
},
|
|
79
79
|
"scripts": {
|
|
80
80
|
"audit": "op run --env-file=.env -- node -e \"import('./dist/dpuse-development.es.js').then(m => m.auditDependencies())\"",
|
package/vite.config.ts
CHANGED
|
@@ -42,7 +42,7 @@ export default defineConfig({
|
|
|
42
42
|
sourcemap: true,
|
|
43
43
|
target: 'ESNext' // Emit modern JavaScript for consumers.
|
|
44
44
|
},
|
|
45
|
-
plugins: [dts({
|
|
45
|
+
plugins: [dts({ outDirs: 'dist/types' })], // Generate type declarations in dist/types.
|
|
46
46
|
resolve: {
|
|
47
47
|
alias: {
|
|
48
48
|
'~': fileURLToPath(new URL('./', import.meta.url)), // Base alias matching tsconfig.
|