@interface-technologies/check-for-js-bundle-update-saga 2.0.0-alpha.1 → 2.0.0-alpha.5

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 ADDED
@@ -0,0 +1 @@
1
+ See https://srmagura.github.io/iti-react/.
package/babel.config.js CHANGED
@@ -3,6 +3,8 @@ module.exports = {
3
3
  presets: [
4
4
  ['@babel/preset-env', { targets: { node: 'current' } }],
5
5
  '@babel/preset-typescript',
6
- '@babel/preset-react',
6
+ ["@babel/preset-react", {
7
+ "runtime": "automatic"
8
+ }]
7
9
  ],
8
10
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@interface-technologies/check-for-js-bundle-update-saga",
3
- "version": "2.0.0-alpha.1",
3
+ "version": "2.0.0-alpha.5",
4
4
  "description": "Redux saga for checking if a JavaScript app has been deployed.",
5
5
  "homepage": "https://bitbucket.org/itidev/iti.react",
6
6
  "repository": {
@@ -14,15 +14,18 @@
14
14
  "lint": "eslint",
15
15
  "lint-staged": "lint-staged --no-stash",
16
16
  "test": "jest",
17
- "tsc": "tsc"
17
+ "tsc": "tsc",
18
+ "prettier": "prettier"
18
19
  },
19
20
  "dependencies": {
20
- "@types/react": "^17.0.21",
21
+ "@types/react": "^17.0.22",
21
22
  "moment-timezone": "^0.5.33",
22
23
  "redux-saga": "^1.1.3"
23
24
  },
24
25
  "peerDependencies": {
25
- "@interface-technologies/iti-react": "^3.0.0-alpha.1",
26
+ "@interface-technologies/iti-react": "^3.0.0-alpha.5",
27
+ "@popperjs/core": "^2.10.1",
28
+ "bootstrap": "^5.1.1",
26
29
  "react": "^17.0.2"
27
30
  },
28
31
  "devDependencies": {
@@ -30,14 +33,17 @@
30
33
  "@babel/preset-env": "^7.15.6",
31
34
  "@babel/preset-react": "^7.14.5",
32
35
  "@babel/preset-typescript": "^7.15.0",
33
- "@interface-technologies/eslint-config": "0.2.11",
34
- "@interface-technologies/iti-react": "3.0.0-alpha.1",
36
+ "@interface-technologies/eslint-config": "0.3.0",
37
+ "@interface-technologies/iti-react": "3.0.0-alpha.5",
35
38
  "@interface-technologies/prettier-config": "0.1.0",
39
+ "@interface-technologies/tsconfig": "0.1.0",
40
+ "@redux-saga/is": "^1.1.2",
41
+ "@redux-saga/symbols": "^1.1.2",
36
42
  "@testing-library/react-hooks": "^7.0.2",
37
43
  "@types/jest": "27.0.1",
38
- "@typescript-eslint/eslint-plugin": "^4.31.1",
39
- "@typescript-eslint/parser": "^4.31.1",
40
- "babel-jest": "^27.2.0",
44
+ "@typescript-eslint/eslint-plugin": "^4.31.2",
45
+ "@typescript-eslint/parser": "^4.31.2",
46
+ "babel-jest": "^27.2.1",
41
47
  "eslint": "^7.32.0",
42
48
  "eslint-config-airbnb": "^18.2.1",
43
49
  "eslint-config-airbnb-typescript": "^14.0.0",
@@ -46,13 +52,14 @@
46
52
  "eslint-plugin-import": "^2.24.2",
47
53
  "eslint-plugin-jsx-a11y": "^6.4.1",
48
54
  "eslint-plugin-promise": "^5.1.0",
49
- "eslint-plugin-react": "^7.25.1",
55
+ "eslint-plugin-react": "^7.25.3",
50
56
  "eslint-plugin-react-hooks": "^4.2.0",
51
57
  "eslint-plugin-redux-saga": "^1.2.1",
52
- "jest": "^27.2.0",
58
+ "jest": "^27.2.1",
53
59
  "jest-haste-map": "^27.2.0",
54
60
  "jest-resolve": "^27.2.0",
55
61
  "lint-staged": "^11.1.2",
62
+ "prettier": "^2.4.1",
56
63
  "react": "^17.0.2",
57
64
  "react-test-renderer": "^17.0.2",
58
65
  "redux-saga-test-plan": "^4.0.3",
package/Readme.md DELETED
@@ -1,3 +0,0 @@
1
- Checks the index.html every few minutes to see if a new JavaScript bundle has been published, then prompts the user to refresh the page if necessary.
2
-
3
- _WARNING: Does not follow semver!_