react-elmish 4.2.0 → 4.4.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/package.json CHANGED
@@ -1,16 +1,16 @@
1
1
  {
2
2
  "name": "react-elmish",
3
- "version": "4.2.0",
3
+ "version": "4.4.0",
4
4
  "description": "Elmish for React using Typescript",
5
5
  "author": "atheck",
6
6
  "license": "MIT",
7
7
  "scripts": {
8
8
  "build": "npm run build:types && npm run build:js",
9
9
  "build:types": "tsc --emitDeclarationOnly --project ./src",
10
- "build:js": "babel src --out-dir dist --extensions \".ts,.tsx\" --source-maps inline",
10
+ "build:js": "babel src --out-dir dist --extensions \".ts,.tsx\" --ignore \"./**/*.spec.ts\",\"./**/*.spec.tsx\" --source-maps inline",
11
11
  "test": "jest --coverage",
12
12
  "test:watch": "jest --watch --coverage",
13
- "lint": "npx eslint --ext .ts,.tsx ./src",
13
+ "lint": "npx eslint \"{src,tests}/**/*.ts[x]\"",
14
14
  "update": "npx npm-check-updates -i",
15
15
  "semantic-release": "semantic-release"
16
16
  },
@@ -19,21 +19,21 @@
19
19
  },
20
20
  "devDependencies": {
21
21
  "@babel/cli": "7.18.10",
22
- "@babel/core": "7.18.10",
22
+ "@babel/core": "7.18.13",
23
23
  "@babel/plugin-proposal-class-properties": "7.18.6",
24
24
  "@babel/preset-env": "7.18.10",
25
25
  "@babel/preset-react": "7.18.6",
26
26
  "@babel/preset-typescript": "7.18.6",
27
27
  "@testing-library/react": "13.3.0",
28
- "@types/jest": "28.1.6",
29
- "@types/react": "18.0.16",
30
- "eslint": "8.21.0",
31
- "eslint-config-heck": "1.20.0",
28
+ "@types/jest": "28.1.8",
29
+ "@types/react": "18.0.17",
30
+ "eslint": "8.22.0",
31
+ "eslint-config-heck": "1.22.3",
32
32
  "jest": "28.1.3",
33
33
  "jest-environment-jsdom": "28.1.3",
34
- "semantic-release": "19.0.3",
35
- "ts-jest": "28.0.7",
36
- "typescript": "4.7.4"
34
+ "semantic-release": "19.0.5",
35
+ "ts-jest": "28.0.8",
36
+ "typescript": "4.8.2"
37
37
  },
38
38
  "homepage": "https://github.com/atheck/react-elmish",
39
39
  "repository": {