jamespot-front-business 1.1.6 → 1.1.7

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-internal.md +18 -0
  2. package/package.json +2 -2
@@ -1,5 +1,23 @@
1
1
  # Typescript utils for use within the Jamespot ecosystem
2
2
 
3
+ ## Run Web on Local
4
+
5
+ Before installing anything take a look at the installation order on jamespot-user-api readMe:
6
+ https://github.com/Jamespot/jamespot-user-api/blob/develop/README-internal.md
7
+
8
+ ### Installation
9
+
10
+ - PNPM is used in this project.
11
+ - It save time in packages installation and projects build among additional other features
12
+
13
+ follow this for more infos: https://pnpm.io/pnpm-cli
14
+
15
+ ```
16
+ pnpm install --frozen-lockfile --ignore-scripts
17
+ pnpm build
18
+ ```
19
+
20
+
3
21
  ## Use in another package
4
22
 
5
23
  ```
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "jamespot-front-business",
3
- "version": "1.1.6",
3
+ "version": "1.1.7",
4
4
  "description": "typescript utils",
5
5
  "main": "dist/cjs.js",
6
6
  "module": "dist/esm.js",
@@ -45,7 +45,7 @@
45
45
  },
46
46
  "dependencies": {
47
47
  "@reduxjs/toolkit": "1.9.0",
48
- "jamespot-user-api": "^1.0.92",
48
+ "jamespot-user-api": "^1.0.93",
49
49
  "react-redux": "7.2.9",
50
50
  "redux": "4.2.0"
51
51
  }