@dpuse/dpuse-development 0.3.450 → 0.3.456

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.
@@ -31,7 +31,7 @@ declare function readTextFile(path: string): Promise<string>;
31
31
  /** Utilities - Remove file. */
32
32
  declare function removeFile(path: string): Promise<void>;
33
33
  /** Utilities - Spawn command. */
34
- declare function spawnCommand(label: string, command: string, arguments_?: string[], ignoreErrors?: boolean): Promise<void>;
34
+ declare function spawnCommand(label: string, command: string, arguments_?: string[], ignoreErrors?: boolean, useShell?: boolean): Promise<void>;
35
35
  /** Utilities - Substitute content. */
36
36
  declare function substituteContent(originalContent: string, substituteContent: string, startMarker: string, endMarker: string): string;
37
37
  /** Utilities - Write JSON file. */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dpuse/dpuse-development",
3
- "version": "0.3.450",
3
+ "version": "0.3.456",
4
4
  "description": "A collection of utilities for managing Data Positioning projects.",
5
5
  "license": "MIT",
6
6
  "author": "Jonathan Terrell <terrell.jm@gmail.com>",
@@ -9,10 +9,10 @@
9
9
  "homepage": "https://www.dpuse.app",
10
10
  "repository": {
11
11
  "type": "git",
12
- "url": "git+https://github.com/data-positioning/dpuse-development.git"
12
+ "url": "git+https://github.com/dpuse/dpuse-development.git"
13
13
  },
14
14
  "bugs": {
15
- "url": "https://github.com/data-positioning/dpuse-development/issues"
15
+ "url": "https://github.com/dpuse/dpuse-development/issues"
16
16
  },
17
17
  "module": "./dist/dpuse-development.es.js",
18
18
  "types": "./dist/types/src/index.d.ts",
@@ -77,16 +77,16 @@
77
77
  "vitest": "^4.1.0"
78
78
  },
79
79
  "scripts": {
80
- "audit": "op run --env-file=.env -- node -e \"import('./dist/dpuse-development.es.js').then(m => m.auditDependencies())\"",
80
+ "audit": "op run --env-file=.env -- node -e \"import('./dist/@dpuse/dpuse-development.es.js').then(m => m.auditDependencies())\"",
81
81
  "build": "vite build",
82
- "check": "node -e \"import('./dist/dpuse-development.es.js').then(m => m.checkDependencies())\"",
83
- "document": "op run --env-file=.env -- node -e \"import('./dist/dpuse-development.es.js').then(m => m.documentDependencies(['MIT']))\"",
84
- "format": "node -e \"import('./dist/dpuse-development.es.js').then(m => m.formatCode())\"",
85
- "lint": "node -e \"import('./dist/dpuse-development.es.js').then(m => m.lintCode())\"",
86
- "release": "op run --env-file=.env -- node -e \"import('./dist/dpuse-development.es.js').then(m => m.releaseProject())\"",
87
- "sync": "node -e \"import('./dist/dpuse-development.es.js').then(m => m.syncProjectWithGitHub())\"",
88
- "test": "node -e \"import('./dist/dpuse-development.es.js').then(m => m.testProject())\"",
89
- "update": "node -e \"import('./dist/dpuse-development.es.js').then(m => m.updateDPUseDependencies(['eslint', 'shared']))\""
82
+ "check": "node -e \"import('./dist/@dpuse/dpuse-development.es.js').then(m => m.checkDependencies())\"",
83
+ "document": "op run --env-file=.env -- node -e \"import('./dist/@dpuse/dpuse-development.es.js').then(m => m.documentDependencies(['MIT']))\"",
84
+ "format": "node -e \"import('./dist/@dpuse/dpuse-development.es.js').then(m => m.formatCode())\"",
85
+ "lint": "node -e \"import('./dist/@dpuse/dpuse-development.es.js').then(m => m.lintCode())\"",
86
+ "release": "op run --env-file=.env -- node -e \"import('./dist/@dpuse/dpuse-development.es.js').then(m => m.releaseProject())\"",
87
+ "sync": "node -e \"import('./dist/@dpuse/dpuse-development.es.js').then(m => m.syncProjectWithGitHub())\"",
88
+ "test": "node -e \"import('./dist/@dpuse/dpuse-development.es.js').then(m => m.testProject())\"",
89
+ "update": "node -e \"import('./dist/@dpuse/dpuse-development.es.js').then(m => m.updateDPUseDependencies(['eslint', 'shared']))\""
90
90
  },
91
91
  "engines": {
92
92
  "node": ">=22.0.0",