create-piral-instance 1.0.0-pre.2217 → 1.0.0
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/LICENSE +1 -1
- package/README.md +3 -3
- package/lib/index.js +2 -2
- package/lib/index.js.map +1 -1
- package/package.json +5 -4
package/LICENSE
CHANGED
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
[](https://piral.io)
|
|
2
2
|
|
|
3
|
-
# [Create Piral Instance](https://piral.io) · [](https://github.com/smapiot/piral/blob/
|
|
3
|
+
# [Create Piral Instance](https://piral.io) · [](https://github.com/smapiot/piral/blob/main/LICENSE) [](https://www.npmjs.com/package/create-piral-instance) [](https://jestjs.io) [](https://gitter.im/piral-io/community)
|
|
4
4
|
|
|
5
5
|
`create-piral-instance` is a command-line tool that can also be used via NPM. It should make scaffolding a new Piral instance as simple as possible.
|
|
6
6
|
|
|
@@ -24,7 +24,7 @@ There are no command line parameters. Every input will be supplied via a command
|
|
|
24
24
|
|
|
25
25
|
## Documentation
|
|
26
26
|
|
|
27
|
-
For details on the available commands check out the [documentation at Piral](https://docs.piral.io) or [on GitHub](https://github.com/smapiot/piral/tree/
|
|
27
|
+
For details on the available commands check out the [documentation at Piral](https://docs.piral.io) or [on GitHub](https://github.com/smapiot/piral/tree/main/docs/commands).
|
|
28
28
|
|
|
29
29
|
## License
|
|
30
30
|
|
package/lib/index.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
|
|
4
|
-
piral_cli_1.runQuestionnaire('new-piral').then(
|
|
3
|
+
const piral_cli_1 = require("piral-cli");
|
|
4
|
+
(0, piral_cli_1.runQuestionnaire)('new-piral').then(() => process.exit(0), (err) => {
|
|
5
5
|
err && !err.logged && console.error(err.message);
|
|
6
6
|
console.log('Codes Reference: https://docs.piral.io/code/search');
|
|
7
7
|
process.exit(1);
|
package/lib/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;AAAA,
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;AAAA,yCAA6C;AAE7C,IAAA,4BAAgB,EAAC,WAAW,CAAC,CAAC,IAAI,CAChC,GAAG,EAAE,CAAC,OAAO,CAAC,IAAI,CAAC,CAAC,CAAC,EACrB,CAAC,GAAG,EAAE,EAAE;IACN,GAAG,IAAI,CAAC,GAAG,CAAC,MAAM,IAAI,OAAO,CAAC,KAAK,CAAC,GAAG,CAAC,OAAO,CAAC,CAAC;IACjD,OAAO,CAAC,GAAG,CAAC,oDAAoD,CAAC,CAAC;IAClE,OAAO,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;AAClB,CAAC,CACF,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "create-piral-instance",
|
|
3
|
-
"version": "1.0.0
|
|
3
|
+
"version": "1.0.0",
|
|
4
4
|
"description": "The NPM initializer to scaffold a new Piral instance.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"scaffold",
|
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
"main": "lib/index.js",
|
|
17
17
|
"typings": "lib/index.d.ts",
|
|
18
18
|
"engines": {
|
|
19
|
-
"node": ">=
|
|
19
|
+
"node": ">=14.18.0"
|
|
20
20
|
},
|
|
21
21
|
"files": [
|
|
22
22
|
"lib",
|
|
@@ -33,6 +33,7 @@
|
|
|
33
33
|
"create-piral-instance": "./lib/cli.js"
|
|
34
34
|
},
|
|
35
35
|
"scripts": {
|
|
36
|
+
"cleanup": "rimraf lib",
|
|
36
37
|
"build": "tsc",
|
|
37
38
|
"test": "echo \"Error: run tests from root\" && exit 1"
|
|
38
39
|
},
|
|
@@ -41,7 +42,7 @@
|
|
|
41
42
|
},
|
|
42
43
|
"dependencies": {
|
|
43
44
|
"inquirer": "^6.2.2",
|
|
44
|
-
"piral-cli": "^1.0.0
|
|
45
|
+
"piral-cli": "^1.0.0"
|
|
45
46
|
},
|
|
46
|
-
"gitHead": "
|
|
47
|
+
"gitHead": "67d9a2920bd5231baf10bc87ae8985666b18fa3a"
|
|
47
48
|
}
|