@inertiajs/react 2.1.7 → 2.1.8
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/LICENSE +0 -0
- package/package.json +12 -11
- package/readme.md +0 -0
package/LICENSE
CHANGED
|
File without changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@inertiajs/react",
|
|
3
|
-
"version": "2.1.
|
|
3
|
+
"version": "2.1.8",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"description": "The React adapter for Inertia.js",
|
|
6
6
|
"contributors": [
|
|
@@ -42,6 +42,14 @@
|
|
|
42
42
|
]
|
|
43
43
|
}
|
|
44
44
|
},
|
|
45
|
+
"scripts": {
|
|
46
|
+
"build": "pnpm clean && ./build.js && tsc",
|
|
47
|
+
"build:with-deps": "./build.js --with-deps",
|
|
48
|
+
"clean": "rm -rf types && rm -rf dist",
|
|
49
|
+
"dev": "./build.js --watch",
|
|
50
|
+
"es2020-check": "pnpm build:with-deps && es-check es2020 \"dist/index.esm.js\" --checkFeatures --module --noCache --verbose",
|
|
51
|
+
"prepublishOnly": "pnpm build"
|
|
52
|
+
},
|
|
45
53
|
"devDependencies": {
|
|
46
54
|
"@types/react": "^16.9.0 || ^17.0.0 || ^18.0.0 || ^19.0.0",
|
|
47
55
|
"@types/react-dom": "^16.9.0 || ^17.0.0 || ^18.0.0 || ^19.0.0",
|
|
@@ -56,15 +64,8 @@
|
|
|
56
64
|
"react": "^16.9.0 || ^17.0.0 || ^18.0.0 || ^19.0.0"
|
|
57
65
|
},
|
|
58
66
|
"dependencies": {
|
|
67
|
+
"@inertiajs/core": "workspace:*",
|
|
59
68
|
"@types/lodash-es": "^4.17.12",
|
|
60
|
-
"lodash-es": "^4.17.21"
|
|
61
|
-
"@inertiajs/core": "2.1.7"
|
|
62
|
-
},
|
|
63
|
-
"scripts": {
|
|
64
|
-
"build": "pnpm clean && ./build.js && tsc",
|
|
65
|
-
"build:with-deps": "./build.js --with-deps",
|
|
66
|
-
"clean": "rm -rf types && rm -rf dist",
|
|
67
|
-
"dev": "./build.js --watch",
|
|
68
|
-
"es2020-check": "pnpm build:with-deps && es-check es2020 \"dist/index.esm.js\" --checkFeatures --module --noCache --verbose"
|
|
69
|
+
"lodash-es": "^4.17.21"
|
|
69
70
|
}
|
|
70
|
-
}
|
|
71
|
+
}
|
package/readme.md
CHANGED
|
File without changes
|