@artisan-commerce/state 0.1.1-canary.0 → 0.2.0-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 CHANGED
@@ -3,6 +3,71 @@
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-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)
7
+
8
+ **Note:** Version bump only for package @artisan-commerce/state
9
+
10
+
11
+
12
+
13
+
14
+ ## [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)
15
+
16
+
17
+ ### Features
18
+
19
+ * added commentaries ([400127f](https://bitbucket.org/tradesystem/artisan_monorepo/commit/400127f878abdafc2236cee866300a765956e0ce))
20
+
21
+
22
+
23
+ ### [0.1.1-canary.6](https://bitbucket.org/tradesystem/artisan_monorepo/compare/@artisan-commerce/state@0.1.1-canary.5...@artisan-commerce/state@0.1.1-canary.6) (2021-02-23)
24
+
25
+ **Note:** Version bump only for package @artisan-commerce/state
26
+
27
+
28
+
29
+
30
+
31
+ ### [0.1.1-canary.5](https://bitbucket.org/tradesystem/artisan_monorepo/compare/@artisan-commerce/state@0.1.1-canary.4...@artisan-commerce/state@0.1.1-canary.5) (2021-02-04)
32
+
33
+ **Note:** Version bump only for package @artisan-commerce/state
34
+
35
+
36
+
37
+
38
+
39
+ ### [0.1.1-canary.4](https://bitbucket.org/tradesystem/artisan_monorepo/compare/@artisan-commerce/state@0.1.1-canary.3...@artisan-commerce/state@0.1.1-canary.4) (2021-02-04)
40
+
41
+ **Note:** Version bump only for package @artisan-commerce/state
42
+
43
+
44
+
45
+
46
+
47
+ ### [0.1.1-canary.3](https://bitbucket.org/tradesystem/artisan_monorepo/compare/@artisan-commerce/state@0.1.1-canary.2...@artisan-commerce/state@0.1.1-canary.3) (2021-02-04)
48
+
49
+ **Note:** Version bump only for package @artisan-commerce/state
50
+
51
+
52
+
53
+
54
+
55
+ ### [0.1.1-canary.2](https://bitbucket.org/tradesystem/artisan_monorepo/compare/@artisan-commerce/state@0.1.1-canary.1...@artisan-commerce/state@0.1.1-canary.2) (2021-02-04)
56
+
57
+ **Note:** Version bump only for package @artisan-commerce/state
58
+
59
+
60
+
61
+
62
+
63
+ ### [0.1.1-canary.1](https://bitbucket.org/tradesystem/artisan_monorepo/compare/@artisan-commerce/state@0.1.1-canary.0...@artisan-commerce/state@0.1.1-canary.1) (2021-02-04)
64
+
65
+ **Note:** Version bump only for package @artisan-commerce/state
66
+
67
+
68
+
69
+
70
+
6
71
  ## 0.1.1-canary.0 (2021-02-03)
7
72
 
8
73
  **Note:** Version bump only for package @artisan-commerce/state
@@ -1,13 +1,2 @@
1
- declare const CONSTANTS: {
2
- CLIENT_NAME: string;
3
- DEFAULT_REQUEST_TIMEOUT: number;
4
- EXCLUDED_LOGGER_STATUS_CODES: number[];
5
- INCLUDED_LOGGER_ENVS: string[];
6
- INCLUDED_INTL_LOG_ENVS: string[];
7
- COUNTRY: {
8
- NAME: string;
9
- CODE: string;
10
- LANGUAGE: string;
11
- };
12
- };
1
+ declare const CONSTANTS: {};
13
2
  export default CONSTANTS;
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.1.1-canary.0",
4
+ "version": "0.2.0-canary.1",
5
5
  "main": "./build/main.bundle.js",
6
6
  "types": "./build/index.d.ts",
7
7
  "files": [
@@ -15,27 +15,20 @@
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": "npm run test -- --watchAll=false --coverage",
19
- "test:ci": "cross-env CI=true jest --runInBand",
20
- "test:staged": "npm run test:ci --findRelatedTests",
18
+ "test:all": "yarn test --watchAll=false --coverage",
19
+ "test:ci": "cross-env CI=true jest",
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
- "lint:staged": "npm run lint --max-warnings=0",
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": "npm run prettier -- --write",
26
- "check-format": "npm run 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": "npm run 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",
33
- "dependencies": {
34
- "@bugsnag/js": "^7.2.0",
35
- "i18next": "^19.6.2",
36
- "i18next-browser-languagedetector": "^5.0.0",
37
- "i18next-xhr-backend": "^3.2.2"
38
- },
39
32
  "devDependencies": {
40
33
  "@babel/core": "^7.10.5",
41
34
  "@babel/preset-env": "^7.10.4",
@@ -80,5 +73,5 @@
80
73
  "webpack-dev-server": "^3.11.0",
81
74
  "webpack-merge": "^5.0.9"
82
75
  },
83
- "gitHead": "af97d51b69e4804d02772cfcf181c48a8134d5aa"
76
+ "gitHead": "3773da33aea7985a2b69613f9fa2d4d33a0296ac"
84
77
  }
@@ -1,2 +0,0 @@
1
- import i18n from "i18next";
2
- export default i18n;