pkgbld 1.16.0 → 1.16.1

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
@@ -4,13 +4,13 @@
4
4
 
5
5
  Rollup based build tool for building libraries based on package.json config and simple CLI options.
6
6
 
7
- It is simple building tool that supports building to different targets like: `es`, `cjs`, `umd` without additional trasformation other than minification using `terser` or preprocess using `rollup-plugin-preprocess`.
7
+ It is a simple building tool that supports building to different targets like: `es`, `cjs`, `umd` without additional transformation other than minification using `terser` or preprocess using `rollup-plugin-preprocess`.
8
8
 
9
- [Changlelog](./CHANGELOG.md)
9
+ [Changelog](./CHANGELOG.md)
10
10
 
11
11
  ## Why
12
12
 
13
- It is created to easily build libraries that contains mutliple subpath exports (entry points, subpackages) because it is not that easy to do at the moment with `microbundle`, `tsdx` or `ng-packagr` (if you are on Typescript).
13
+ It is created to easily build libraries that contains multiple subpath exports (entry points, subpackages) because it is not that easy to do at the moment with `microbundle`, `tsdx` or `ng-packagr` (if you are on Typescript).
14
14
 
15
15
  ## Installation
16
16
 
@@ -36,7 +36,7 @@ Run `npm run build`.
36
36
 
37
37
  ## package.json
38
38
 
39
- `pkgbld` expects name field to be filled in the package.json file. `exports` field defines what entries/outputs should be build for this package.
39
+ `pkgbld` expects the name field to be filled in the package.json file. `exports` field defines what entries/outputs should be built for this package.
40
40
 
41
41
  ## CLI options
42
42
 
@@ -82,7 +82,7 @@ Defines what formats to build, only supports `es` and `cjs` at the moment. Use `
82
82
  pkgbld --preprocess=index
83
83
  ```
84
84
 
85
- Defines what entry points/files should be preprocessed using `rollup-plugin-preprocess`. For the entry point will be defined variable es (for esm target), cjs (for commonjs) and umd (for umd) depending on the target type. Please request more variables / more granular logic if you want more.
85
+ Defines what entry points/files should be preprocessed using `rollup-plugin-preprocess`. The entry point will be defined as variable es (for esm target), cjs (for commonjs) and umd (for umd) depending on the target type. Please request more variables / more granular logic if you want more.
86
86
 
87
87
  ### dir
88
88
 
@@ -114,7 +114,7 @@ File(s) to make executable. First entry will be added to package.json
114
114
  pkgbld --include-externals
115
115
  ```
116
116
 
117
- Bundles all externals into package.
117
+ Bundles all externals into a package.
118
118
 
119
119
  ### eject
120
120
 
package/dist/index.js CHANGED
@@ -551,7 +551,7 @@ async function writeJson(path, json) {
551
551
  await fs.writeFile(path, JSON.stringify(json, null, 2) + '\n');
552
552
  }
553
553
 
554
- var version = "1.16.0";
554
+ var version = "1.16.1";
555
555
  var license = "MIT";
556
556
  var name = "pkgbld";
557
557
  var author = {
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "1.16.0",
2
+ "version": "1.16.1",
3
3
  "license": "MIT",
4
4
  "name": "pkgbld",
5
5
  "author": {