spets 0.1.15 → 0.1.16

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/index.js CHANGED
@@ -269,8 +269,8 @@ function createGitHubWorkflow(cwd) {
269
269
  const templateDir = join(cwd, ".github", "ISSUE_TEMPLATE");
270
270
  mkdirSync(workflowDir, { recursive: true });
271
271
  mkdirSync(templateDir, { recursive: true });
272
- const workflowTemplate = readFileSync(join(__dirname, "..", "templates", "github", "workflows", "spets.yml"), "utf-8");
273
- const issueTemplate = readFileSync(join(__dirname, "..", "templates", "github", "ISSUE_TEMPLATE", "spets-task.yml"), "utf-8");
272
+ const workflowTemplate = readFileSync(join(__dirname, "..", "assets", "github", "workflows", "spets.yml"), "utf-8");
273
+ const issueTemplate = readFileSync(join(__dirname, "..", "assets", "github", "ISSUE_TEMPLATE", "spets-task.yml"), "utf-8");
274
274
  writeFileSync(join(workflowDir, "spets.yml"), workflowTemplate);
275
275
  writeFileSync(join(templateDir, "spets-task.yml"), issueTemplate);
276
276
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "spets",
3
- "version": "0.1.15",
3
+ "version": "0.1.16",
4
4
  "description": "Spec Driven Development Execution Framework",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -9,7 +9,8 @@
9
9
  },
10
10
  "files": [
11
11
  "dist",
12
- "templates"
12
+ "templates",
13
+ "assets"
13
14
  ],
14
15
  "scripts": {
15
16
  "dev": "tsx src/index.ts",