create-piral-instance 1.0.0-pre.2104 → 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 CHANGED
@@ -1,6 +1,6 @@
1
1
  MIT License
2
2
 
3
- Copyright (c) 2019 - 2021 smapiot
3
+ Copyright (c) 2019 - 2023 smapiot
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
package/README.md CHANGED
@@ -1,6 +1,6 @@
1
- [![Piral Logo](https://github.com/smapiot/piral/raw/master/docs/assets/logo.png)](https://piral.io)
1
+ [![Piral Logo](https://github.com/smapiot/piral/raw/main/docs/assets/logo.png)](https://piral.io)
2
2
 
3
- # [Create Piral Instance](https://piral.io) · [![GitHub License](https://img.shields.io/badge/license-MIT-blue.svg)](https://github.com/smapiot/piral/blob/master/LICENSE) [![npm version](https://img.shields.io/npm/v/create-piral-instance.svg?style=flat)](https://www.npmjs.com/package/create-piral-instance) [![tested with jest](https://img.shields.io/badge/tested_with-jest-99424f.svg)](https://jestjs.io) [![Gitter Chat](https://badges.gitter.im/gitterHQ/gitter.png)](https://gitter.im/piral-io/community)
3
+ # [Create Piral Instance](https://piral.io) · [![GitHub License](https://img.shields.io/badge/license-MIT-blue.svg)](https://github.com/smapiot/piral/blob/main/LICENSE) [![npm version](https://img.shields.io/npm/v/create-piral-instance.svg?style=flat)](https://www.npmjs.com/package/create-piral-instance) [![tested with jest](https://img.shields.io/badge/tested_with-jest-99424f.svg)](https://jestjs.io) [![Gitter Chat](https://badges.gitter.im/gitterHQ/gitter.png)](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/master/docs/commands).
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
- var piral_cli_1 = require("piral-cli");
4
- piral_cli_1.runQuestionnaire('new-piral').then(function () { return process.exit(0); }, function (err) {
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,uCAA6C;AAE7C,4BAAgB,CAAC,WAAW,CAAC,CAAC,IAAI,CAChC,cAAM,OAAA,OAAO,CAAC,IAAI,CAAC,CAAC,CAAC,EAAf,CAAe,EACrB,UAAC,GAAG;IACF,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"}
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-pre.2104",
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": ">=10.0"
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-pre.2104"
45
+ "piral-cli": "^1.0.0"
45
46
  },
46
- "gitHead": "75ba892e60a4f8a027cb8fc6fb9df941a18a9962"
47
+ "gitHead": "67d9a2920bd5231baf10bc87ae8985666b18fa3a"
47
48
  }