mobility-toolbox-js 2.0.0-beta.3 → 2.0.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.
- package/README.md +4 -1
- package/common/styles/trackerDefaultStyle.js +8 -8
- package/index.js +1 -1
- package/index.js.map +1 -1
- package/package.json +10 -3
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "mobility-toolbox-js",
|
|
3
3
|
"license": "MIT",
|
|
4
4
|
"description": "Toolbox for JavaScript applications in the domains of mobility and logistics.",
|
|
5
|
-
"version": "2.0.0
|
|
5
|
+
"version": "2.0.0",
|
|
6
6
|
"main": "index.js",
|
|
7
7
|
"module": "module.js",
|
|
8
8
|
"dependencies": {
|
|
@@ -42,6 +42,8 @@
|
|
|
42
42
|
"@babel/plugin-transform-runtime": "7.16.10",
|
|
43
43
|
"@babel/preset-env": "^7.16.11",
|
|
44
44
|
"@babel/preset-react": "7.16.7",
|
|
45
|
+
"@commitlint/cli": "17.0.2",
|
|
46
|
+
"@commitlint/config-conventional": "17.0.2",
|
|
45
47
|
"@neutrinojs/copy": "9.5.0",
|
|
46
48
|
"@neutrinojs/jest": "^9.5.0",
|
|
47
49
|
"@neutrinojs/library": "9.5.0",
|
|
@@ -64,7 +66,7 @@
|
|
|
64
66
|
"eslint-plugin-react": "7.28.0",
|
|
65
67
|
"eslint-plugin-react-hooks": "4.3.0",
|
|
66
68
|
"fixpack": "3.0.6",
|
|
67
|
-
"husky": "
|
|
69
|
+
"husky": "8.0.1",
|
|
68
70
|
"jest": "26.6.3",
|
|
69
71
|
"jest-canvas-mock": "2.3.1",
|
|
70
72
|
"jest-fetch-mock": "3.0.3",
|
|
@@ -82,6 +84,7 @@
|
|
|
82
84
|
"sass": "1.52.2",
|
|
83
85
|
"sass-loader": "8.0.2",
|
|
84
86
|
"sort-json": "2.0.0",
|
|
87
|
+
"standard-version": "9.5.0",
|
|
85
88
|
"start-server-and-test": "1.14.0",
|
|
86
89
|
"stylelint": "14.3.0",
|
|
87
90
|
"stylelint-config-recommended-scss": "5.0.2",
|
|
@@ -106,7 +109,11 @@
|
|
|
106
109
|
"lib:dev": "REACT_APP_LIB_MODE=1 webpack --mode development",
|
|
107
110
|
"link2": "cmdToAdd=$(node ./scripts/read-pkg-json.js add) && $cmdToAdd && yarn build && cmdToRemove=$(node ./scripts/read-pkg-json.js remove) && $cmdToRemove && cd build && yarn link",
|
|
108
111
|
"lint": "eslint 'src/**/*.js' && stylelint 'src/**/*.css' 'src/**/*.scss'",
|
|
109
|
-
"publish:beta": "HUSKY=0 yarn
|
|
112
|
+
"publish:beta": "HUSKY=0 yarn release -- --prerelease beta --skip.changelog && git push origin HEAD && yarn run build && cd build && git push --tags && HUSKY=0 yarn publish --tag beta",
|
|
113
|
+
"publish:beta:dryrun": "yarn release -- --prerelease beta --dry-run --skip.changelog",
|
|
114
|
+
"publish:public": "yarn release && git push origin HEAD && yarn run build && cd build && git push --tags && yarn publish",
|
|
115
|
+
"publish:public:dryrun": "yarn release --dry-run",
|
|
116
|
+
"release": "standard-version",
|
|
110
117
|
"start": "yarn doc && webpack-dev-server --mode development --open",
|
|
111
118
|
"start:examples": "webpack-dev-server --mode development --open",
|
|
112
119
|
"test": "REACT_APP_LIB_MODE=1 jest",
|