@artisan-commerce/state 0.2.0-canary.0 → 0.2.0

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 +16 -0
  2. package/package.json +7 -8
package/CHANGELOG.md CHANGED
@@ -3,6 +3,22 @@
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.0](https://bitbucket.org/tradesystem/artisan_monorepo/compare/@artisan-commerce/state@0.2.0-canary.1...@artisan-commerce/state@0.2.0) (2021-02-25)
7
+
8
+ **Note:** Version bump only for package @artisan-commerce/state
9
+
10
+
11
+
12
+
13
+
14
+ ## [0.2.0-canary.1](https://bitbucket.org/tradesystem/artisan_monorepo/compare/@artisan-commerce/state@0.2.0-canary.0...@artisan-commerce/state@0.2.0-canary.1) (2021-02-25)
15
+
16
+ **Note:** Version bump only for package @artisan-commerce/state
17
+
18
+
19
+
20
+
21
+
6
22
  ## [0.2.0-canary.0](https://bitbucket.org/tradesystem/artisan_monorepo/compare/@artisan-commerce/state@0.1.1-canary.6...@artisan-commerce/state@0.2.0-canary.0) (2021-02-25)
7
23
 
8
24
 
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.0-canary.0",
4
+ "version": "0.2.0",
5
5
  "main": "./build/main.bundle.js",
6
6
  "types": "./build/index.d.ts",
7
7
  "files": [
@@ -15,18 +15,17 @@
15
15
  "build": "webpack --config webpack.prod.js",
16
16
  "start:build": "nodemon ./build/main.bundle.js",
17
17
  "test": "jest --watchAll",
18
- "test:all": "yarn test -- --watchAll=false --coverage",
19
- "test:ci": "cross-env CI=true jest --runInBand",
18
+ "test:all": "yarn test --watchAll=false --coverage",
19
+ "test:ci": "cross-env CI=true jest",
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 .",
23
23
  "lint:staged": "yarn lint --max-warnings=0",
24
24
  "prettier": "prettier --ignore-path .gitignore \"**/*.+(js|jsx|ts|tsx|json|css|scss|html)\"",
25
- "format": "yarn prettier -- --write",
26
- "check-format": "yarn prettier -- --list-different",
25
+ "format": "yarn prettier --write",
26
+ "check-format": "yarn prettier --list-different",
27
27
  "validate": "cross-env CI=true npm-run-all --parallel test:ci check-types check-format lint build",
28
- "validate:ci": "npm-run-all --parallel check-types check-format lint",
29
- "prepare": "yarn build"
28
+ "validate:ci": "npm-run-all --parallel check-types check-format lint"
30
29
  },
31
30
  "author": "Santiago Benítez",
32
31
  "license": "MIT",
@@ -74,5 +73,5 @@
74
73
  "webpack-dev-server": "^3.11.0",
75
74
  "webpack-merge": "^5.0.9"
76
75
  },
77
- "gitHead": "dea37257836c242e44ce73f76b0520aaa193ed1f"
76
+ "gitHead": "f5cd4953e041594e2beec58711cde2b57298d286"
78
77
  }