@legalplace/wizardx-core 2.7.1 → 2.7.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/CHANGELOG.md +12 -0
  2. package/package.json +3 -2
package/CHANGELOG.md CHANGED
@@ -3,6 +3,18 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [2.7.2](https://git.legalplace.eu/legalplace/monorepo/compare/@legalplace/wizardx-core@2.7.1...@legalplace/wizardx-core@2.7.2) (2022-01-26)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * copy command from build script api[#4754](https://git.legalplace.eu/legalplace/monorepo/issues/4754) ([6313f44](https://git.legalplace.eu/legalplace/monorepo/commits/6313f44e208b875572505a890064b2e084cbf277))
12
+ * use build:ci script instead of build:local api[#4754](https://git.legalplace.eu/legalplace/monorepo/issues/4754) ([1c0a4e9](https://git.legalplace.eu/legalplace/monorepo/commits/1c0a4e93a2418647d9ded2e29f5573bedfb1f27a))
13
+
14
+
15
+
16
+
17
+
6
18
  ## [2.7.1](https://git.legalplace.eu/legalplace/monorepo/compare/@legalplace/wizardx-core@2.7.0...@legalplace/wizardx-core@2.7.1) (2022-01-18)
7
19
 
8
20
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@legalplace/wizardx-core",
3
- "version": "2.7.1",
3
+ "version": "2.7.2",
4
4
  "author": "Moncef Hammou (moncef@legalplace.fr)",
5
5
  "license": "MIT",
6
6
  "files": [
@@ -9,6 +9,7 @@
9
9
  "main": "dist/index.js",
10
10
  "scripts": {
11
11
  "build": "npx rimraf dist && npx tsc",
12
+ "build:ci": "npx rimraf dist && npx tsc",
12
13
  "start": "npx tsc-watch --noClear -p ./tsconfig.json",
13
14
  "lint": "tsc --noEmit && eslint 'src/**/*.{js,jsx,ts,tsx}' --quiet",
14
15
  "lint:fix": "tsc --noEmit && eslint 'src/**/*.{js,jsx,ts,tsx}' --fix",
@@ -91,5 +92,5 @@
91
92
  "*.test.ts",
92
93
  "*.test.tsx"
93
94
  ],
94
- "gitHead": "47024b8ba1d94f8c646b5f8f15950c6804f32159"
95
+ "gitHead": "8a4945798d82bf0d74385db926c568d6a65bc89b"
95
96
  }