magic-spec 1.2.1 → 1.2.3
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/README.md +1 -1
- package/installers/node/index.js +1 -1
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# 🪄 Magic Spec
|
|
2
2
|
|
|
3
|
-
[](https://www.npmjs.com/package/magic-spec)
|
|
4
4
|
[](https://pypi.org/project/magic-spec/)
|
|
5
5
|
[](./LICENSE)
|
|
6
6
|
|
package/installers/node/index.js
CHANGED
|
@@ -5,7 +5,7 @@ const path = require('path');
|
|
|
5
5
|
const { spawnSync } = require('child_process');
|
|
6
6
|
const https = require('https');
|
|
7
7
|
const os = require('os');
|
|
8
|
-
const { version } = require('
|
|
8
|
+
const { version } = require('../../package.json');
|
|
9
9
|
|
|
10
10
|
const GITHUB_REPO = 'teratron/magic-spec';
|
|
11
11
|
const cwd = process.cwd();
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "magic-spec",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.3",
|
|
4
4
|
"description": "Magic Specification-Driven Development (SDD) Workflow",
|
|
5
5
|
"author": "Oleg Alexandrov <alexandrovoleg.ru@gmail.com>",
|
|
6
6
|
"license": "MIT",
|
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
"scripts": {
|
|
23
23
|
"test": "echo \"Error: no test specified\" && exit 1",
|
|
24
24
|
"build": "echo \"Build is no longer required for the thin client. Use 'npm pack' to verify the package.\"",
|
|
25
|
-
"check": "npm pack",
|
|
25
|
+
"check": "npm pack --pack-destination dist",
|
|
26
26
|
"publish:dry": "npm publish --dry-run"
|
|
27
27
|
}
|
|
28
|
-
}
|
|
28
|
+
}
|