@artisan-commerce/state 0.2.1 → 0.2.2-canary.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/CHANGELOG.md +18 -0
- package/package.json +5 -6
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,24 @@
|
|
|
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
|
+
### [0.2.2-canary.1](https://bitbucket.org/tradesystem/artisan_monorepo/compare/@artisan-commerce/state@0.2.2-canary.0...@artisan-commerce/state@0.2.2-canary.1) (2021-03-30)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Performance Improvements
|
|
10
|
+
|
|
11
|
+
* **global:** add esbuild opt-in for dev ([f760449](https://bitbucket.org/tradesystem/artisan_monorepo/commit/f7604492fc17967bad75583a49d91a51cd6241aa))
|
|
12
|
+
* **global:** improve jest performance ([8c36173](https://bitbucket.org/tradesystem/artisan_monorepo/commit/8c36173df7e7cbfad40888499c81fcf7d11a7105))
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
### [0.2.2-canary.0](https://bitbucket.org/tradesystem/artisan_monorepo/compare/@artisan-commerce/state@0.2.1...@artisan-commerce/state@0.2.2-canary.0) (2021-03-12)
|
|
17
|
+
|
|
18
|
+
**Note:** Version bump only for package @artisan-commerce/state
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
|
|
6
24
|
### [0.2.1](https://bitbucket.org/tradesystem/artisan_monorepo/compare/@artisan-commerce/state@0.2.1-canary.1...@artisan-commerce/state@0.2.1) (2021-03-02)
|
|
7
25
|
|
|
8
26
|
**Note:** Version bump only for package @artisan-commerce/state
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@artisan-commerce/state",
|
|
3
3
|
"description": "Library used to share state functionality",
|
|
4
|
-
"version": "0.2.1",
|
|
4
|
+
"version": "0.2.2-canary.1",
|
|
5
5
|
"main": "./build/main.bundle.js",
|
|
6
6
|
"types": "./build/index.d.ts",
|
|
7
7
|
"files": [
|
|
@@ -11,12 +11,12 @@
|
|
|
11
11
|
],
|
|
12
12
|
"scripts": {
|
|
13
13
|
"start": "webpack --config webpack.dev.js",
|
|
14
|
-
"dev": "
|
|
14
|
+
"dev": "yarn start",
|
|
15
15
|
"build": "webpack --config webpack.prod.js",
|
|
16
16
|
"start:build": "nodemon ./build/main.bundle.js",
|
|
17
|
-
"test": "jest --watchAll",
|
|
17
|
+
"test": "jest --watchAll --runInBand",
|
|
18
18
|
"test:all": "yarn test --watchAll=false --coverage",
|
|
19
|
-
"test:ci": "cross-env CI=true jest",
|
|
19
|
+
"test:ci": "cross-env CI=true jest --runInBand",
|
|
20
20
|
"test:staged": "yarn test:ci --findRelatedTests ./src",
|
|
21
21
|
"check-types": "tsc --noEmit",
|
|
22
22
|
"lint": "eslint --ignore-path .gitignore --ignore-pattern !cypress/.eslintrc.js --ext .js,jsx,.ts,.tsx .",
|
|
@@ -56,7 +56,6 @@
|
|
|
56
56
|
"eslint-plugin-react": "^7.20.3",
|
|
57
57
|
"eslint-plugin-react-hooks": "^4.0.8",
|
|
58
58
|
"is-ci-cli": "^2.1.2",
|
|
59
|
-
"jest": "^24.9.0",
|
|
60
59
|
"jest-axe": "^3.5.0",
|
|
61
60
|
"jest-in-case": "^1.0.2",
|
|
62
61
|
"jest-styled-components": "^7.0.2",
|
|
@@ -73,5 +72,5 @@
|
|
|
73
72
|
"webpack-dev-server": "^3.11.0",
|
|
74
73
|
"webpack-merge": "^5.0.9"
|
|
75
74
|
},
|
|
76
|
-
"gitHead": "
|
|
75
|
+
"gitHead": "ddf546ca53424ff41da3f491fd03414b10601c0c"
|
|
77
76
|
}
|