@fission-ai/openspec 0.17.0 → 0.17.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/commands/config.js +1 -1
- package/package.json +4 -1
package/dist/commands/config.js
CHANGED
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
import { confirm } from '@inquirer/prompts';
|
|
2
1
|
import { spawn } from 'node:child_process';
|
|
3
2
|
import * as fs from 'node:fs';
|
|
4
3
|
import { getGlobalConfigPath, getGlobalConfig, saveGlobalConfig, } from '../core/global-config.js';
|
|
@@ -123,6 +122,7 @@ export function registerConfigCommand(program) {
|
|
|
123
122
|
return;
|
|
124
123
|
}
|
|
125
124
|
if (!options.yes) {
|
|
125
|
+
const { confirm } = await import('@inquirer/prompts');
|
|
126
126
|
const confirmed = await confirm({
|
|
127
127
|
message: 'Reset all configuration to defaults?',
|
|
128
128
|
default: false,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fission-ai/openspec",
|
|
3
|
-
"version": "0.17.
|
|
3
|
+
"version": "0.17.1",
|
|
4
4
|
"description": "AI-native system for spec-driven development",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"openspec",
|
|
@@ -44,7 +44,9 @@
|
|
|
44
44
|
"@changesets/cli": "^2.27.7",
|
|
45
45
|
"@types/node": "^24.2.0",
|
|
46
46
|
"@vitest/ui": "^3.2.4",
|
|
47
|
+
"eslint": "^9.39.2",
|
|
47
48
|
"typescript": "^5.9.3",
|
|
49
|
+
"typescript-eslint": "^8.50.1",
|
|
48
50
|
"vitest": "^3.2.4"
|
|
49
51
|
},
|
|
50
52
|
"dependencies": {
|
|
@@ -56,6 +58,7 @@
|
|
|
56
58
|
"zod": "^4.0.17"
|
|
57
59
|
},
|
|
58
60
|
"scripts": {
|
|
61
|
+
"lint": "eslint src/",
|
|
59
62
|
"build": "node build.js",
|
|
60
63
|
"dev": "tsc --watch",
|
|
61
64
|
"dev:cli": "pnpm build && node bin/openspec.js",
|