spec-up-t 1.6.5 → 1.6.6
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": "spec-up-t",
|
|
3
|
-
"version": "1.6.
|
|
3
|
+
"version": "1.6.6",
|
|
4
4
|
"description": "Technical specification drafting tool that generates rich specification documents from markdown. Forked from https://github.com/decentralized-identity/spec-up by Daniel Buchner (https://github.com/csuwildcat)",
|
|
5
5
|
"main": "./index",
|
|
6
6
|
"repository": {
|
|
@@ -3,6 +3,11 @@ const path = require('path');
|
|
|
3
3
|
// get current directory name
|
|
4
4
|
const dirName = path.basename(path.resolve(__dirname, '../../../../'));
|
|
5
5
|
|
|
6
|
+
// Skip the postinstall message when running from npx create-spec-up-t
|
|
7
|
+
// because the starter pack handles its own completion message after configuration
|
|
8
|
+
if (process.env.SPEC_UP_T_SKIP_POSTINSTALL_MESSAGE === 'true') {
|
|
9
|
+
return;
|
|
10
|
+
}
|
|
6
11
|
|
|
7
12
|
process.nextTick(() => {
|
|
8
13
|
console.log(`
|