magic-spec 1.2.3 → 1.3.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "magic-spec",
3
- "version": "1.2.3",
3
+ "version": "1.3.2",
4
4
  "description": "Magic Specification-Driven Development (SDD) Workflow",
5
5
  "author": "Oleg Alexandrov <alexandrovoleg.ru@gmail.com>",
6
6
  "license": "MIT",
@@ -14,15 +14,18 @@
14
14
  "magic-spec": "installers/node/index.js"
15
15
  },
16
16
  "files": [
17
- "installers/node/index.js"
17
+ "installers/node/index.js",
18
+ "installers/config.json",
19
+ "package.json",
20
+ "CHANGELOG.md"
18
21
  ],
19
22
  "engines": {
20
23
  "node": ">=16"
21
24
  },
22
25
  "scripts": {
23
- "test": "echo \"Error: no test specified\" && exit 1",
24
- "build": "echo \"Build is no longer required for the thin client. Use 'npm pack' to verify the package.\"",
25
- "check": "npm pack --pack-destination dist",
26
+ "test": "python installers/scripts/run_tests.py",
27
+ "build": "node -e \"const fs=require('fs'); if(!fs.existsSync('dist')) fs.mkdirSync('dist')\" && npm pack --pack-destination dist",
28
+ "check": "npm run build -- --dry-run",
26
29
  "publish:dry": "npm publish --dry-run"
27
30
  }
28
31
  }