@rific/updater 0.4.0 → 0.4.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/package.json +10 -12
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rific/updater",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.1",
|
|
4
4
|
"description": "OTA update hook for Expo apps. Silent background fetch on foreground, manual check with confirmation dialog",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"expo",
|
|
@@ -46,30 +46,29 @@
|
|
|
46
46
|
"scripts": {
|
|
47
47
|
"build": "tsup src/index.ts --format cjs,esm --dts --clean",
|
|
48
48
|
"build:watch": "tsup src/index.ts --format cjs,esm --dts --watch",
|
|
49
|
+
"ci": "npm run lint && npm test && npm run typecheck && npm run build",
|
|
49
50
|
"fix": "eslint --fix",
|
|
50
51
|
"lint": "eslint",
|
|
51
52
|
"prepublishOnly": "npm run build",
|
|
52
53
|
"release": "git push --follow-tags",
|
|
53
|
-
"release:major": "npm version major &&
|
|
54
|
-
"release:minor": "npm version minor &&
|
|
55
|
-
"release:patch": "npm version patch &&
|
|
54
|
+
"release:major": "npm version major && npm run release",
|
|
55
|
+
"release:minor": "npm version minor && npm run release",
|
|
56
|
+
"release:patch": "npm version patch && npm run release",
|
|
56
57
|
"test": "jest",
|
|
57
58
|
"test:watch": "jest --watchAll",
|
|
58
59
|
"typecheck": "tsc --noEmit",
|
|
59
|
-
"preversion": "npm run
|
|
60
|
+
"preversion": "npm run ci"
|
|
60
61
|
},
|
|
62
|
+
"prettier": "@infinitetoken/eslint-config/prettier",
|
|
61
63
|
"devDependencies": {
|
|
64
|
+
"@infinitetoken/eslint-config": "^0.1.4",
|
|
65
|
+
"@infinitetoken/tsconfig": "^0.1.1",
|
|
62
66
|
"@testing-library/react": "^16.3.2",
|
|
63
67
|
"@types/jest": "^30.0.0",
|
|
64
68
|
"@types/react": "^19.0.0",
|
|
65
|
-
"@typescript-eslint/parser": "^8.59.3",
|
|
66
69
|
"eslint": "^9.39.4",
|
|
67
|
-
"eslint-config-prettier": "^10.1.8",
|
|
68
|
-
"eslint-plugin-package-json": "^1.0.0",
|
|
69
|
-
"eslint-plugin-prettier": "^5.5.5",
|
|
70
70
|
"eslint-plugin-react-hooks": "^7.1.1",
|
|
71
71
|
"eslint-plugin-react-native": "^5.0.0",
|
|
72
|
-
"eslint-plugin-simple-import-sort": "^13.0.0",
|
|
73
72
|
"expo-updates": ">=0.25.0",
|
|
74
73
|
"jest": "^30.4.2",
|
|
75
74
|
"jest-environment-jsdom": "^30.4.1",
|
|
@@ -78,8 +77,7 @@
|
|
|
78
77
|
"react-native": "^0.85.3",
|
|
79
78
|
"ts-jest": "^29.4.9",
|
|
80
79
|
"tsup": "^8.0.0",
|
|
81
|
-
"typescript": "
|
|
82
|
-
"typescript-eslint": "^8.59.3"
|
|
80
|
+
"typescript": "~6.0.3"
|
|
83
81
|
},
|
|
84
82
|
"peerDependencies": {
|
|
85
83
|
"expo-updates": ">=57.0.0",
|