create-pkgbld 1.1.6 → 1.1.8

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 CHANGED
@@ -1,9 +1,11 @@
1
1
  # create-pkgbld
2
2
 
3
- Minimalistic scaffolding utility to create monorepo packages.
3
+ Minimalistic scaffolding utility for [pkgbld](https://github.com/kshutkin/package-build/tree/main/pkgbld).
4
4
 
5
5
  *Disclaimer:* despite version 1.0.0+ it is still very raw, use only if it fits your needs.
6
6
 
7
+ [Changlelog](./CHANGELOG.md)
8
+
7
9
  ## Usage
8
10
 
9
11
  ```
@@ -15,3 +17,6 @@ or
15
17
  ```
16
18
  npm init pkgbld <folder name>
17
19
  ```
20
+ # License
21
+
22
+ [MIT](https://github.com/kshutkin/package-build/blob/main/LICENSE)
package/dist/index.cjs CHANGED
@@ -1,3 +1,4 @@
1
+ #!/usr/bin/env node
1
2
  'use strict';
2
3
 
3
4
  var prompts = require('prompts');
package/package.json CHANGED
@@ -1,12 +1,12 @@
1
1
  {
2
- "version": "1.1.6",
2
+ "version": "1.1.8",
3
3
  "license": "MIT",
4
4
  "name": "create-pkgbld",
5
5
  "author": {
6
6
  "name": "Konstantin Shutkin"
7
7
  },
8
8
  "funding": "https://www.donationalerts.com/r/excitingcode",
9
- "bin": "./dist/index.js",
9
+ "bin": "./dist/index.cjs",
10
10
  "exports": {
11
11
  ".": {
12
12
  "require": "./dist/index.cjs",
@@ -29,7 +29,7 @@
29
29
  "bugs": {
30
30
  "url": "https://github.com/kshutkin/package-build/issues"
31
31
  },
32
- "homepage": "https://github.com/kshutkin/package-build/README.md",
32
+ "homepage": "https://github.com/kshutkin/package-build/blob/main/create-pkgbld/README.md",
33
33
  "keywords": [
34
34
  "pkgbld",
35
35
  "create",
@@ -41,7 +41,7 @@
41
41
  "@types/parse-git-config": "3.0.1",
42
42
  "@types/prompts": "2.4.2",
43
43
  "@types/minimist": "1.2.2",
44
- "pkgbld": "1.14.1"
44
+ "pkgbld": "1.14.6"
45
45
  },
46
46
  "dependencies": {
47
47
  "degit": "2.8.4",