@payfit/nx-core 4.9.2-1 → 4.9.2-2

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.
Files changed (2) hide show
  1. package/README.md +1 -0
  2. package/package.json +7 -2
package/README.md CHANGED
@@ -13,6 +13,7 @@ yarn add -D @payfit/nx-core
13
13
  ## Building
14
14
 
15
15
  Run `nx build nx-core` to build the library.
16
+ The build artifacts will be stored in the `dist/packages/nx-core` directory.
16
17
 
17
18
  ## Running unit tests
18
19
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@payfit/nx-core",
3
- "version": "4.9.2-1",
3
+ "version": "4.9.2-2",
4
4
  "type": "commonjs",
5
5
  "main": "dist/src/index.js",
6
6
  "types": "dist/src/index.d.ts",
@@ -27,5 +27,10 @@
27
27
  "!**/*.tsbuildinfo",
28
28
  "generators.json",
29
29
  "executors.json"
30
- ]
30
+ ],
31
+ "exports": {
32
+ ".": "./dist/src/index.js",
33
+ "./package.json": "./package.json",
34
+ "./versionActions": "./dist/src/scripts/version-action.js"
35
+ }
31
36
  }