@koine/next 1.1.0 → 1.1.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/config/index.js +5 -1
- package/node/config/index.js +5 -1
- package/package.json +34 -4
package/config/index.js
CHANGED
|
@@ -213,7 +213,11 @@ export function withKoine(_a) {
|
|
|
213
213
|
ignoreDuringBuilds: true, // we have this strict check on each commit
|
|
214
214
|
}, typescript: {
|
|
215
215
|
ignoreBuildErrors: true, // we have this strict check on each commit
|
|
216
|
-
}, poweredByHeader: false, swcMinify: true, modularizeImports: __assign({ "@koine/api": { transform: "@koine/api/{{member}}" }, "@koine/browser": { transform: "@koine/browser/{{member}}" }, "@koine/dom": { transform: "@koine/dom/{{member}}" }, "@koine/next/?(((\\w*)?/?)*)": {
|
|
216
|
+
}, poweredByHeader: false, swcMinify: true, modularizeImports: __assign({ "@koine/api": { transform: "@koine/api/{{member}}" }, "@koine/browser": { transform: "@koine/browser/{{member}}" }, "@koine/dom": { transform: "@koine/dom/{{member}}" }, "@koine/next/?(((\\w*)?/?)*)": {
|
|
217
|
+
transform: "@koine/next/{{ matches.[1] }}/{{member}}",
|
|
218
|
+
}, "@koine/react/?(((\\w*)?/?)*)": {
|
|
219
|
+
transform: "@koine/react/{{ matches.[1] }}/{{member}}",
|
|
220
|
+
}, "@koine/utils": { transform: "@koine/utils/{{member}}" } }, (custom["modularizeImports"] || {})), experimental: __assign({
|
|
217
221
|
// @see https://github.com/vercel/vercel/discussions/5973#discussioncomment-472618
|
|
218
222
|
// @see critters error https://github.com/vercel/next.js/issues/20742
|
|
219
223
|
// optimizeCss: true,
|
package/node/config/index.js
CHANGED
|
@@ -223,7 +223,11 @@ function withKoine(_a) {
|
|
|
223
223
|
ignoreDuringBuilds: true, // we have this strict check on each commit
|
|
224
224
|
}, typescript: {
|
|
225
225
|
ignoreBuildErrors: true, // we have this strict check on each commit
|
|
226
|
-
}, poweredByHeader: false, swcMinify: true, modularizeImports: tslib_1.__assign({ "@koine/api": { transform: "@koine/api/{{member}}" }, "@koine/browser": { transform: "@koine/browser/{{member}}" }, "@koine/dom": { transform: "@koine/dom/{{member}}" }, "@koine/next/?(((\\w*)?/?)*)": {
|
|
226
|
+
}, poweredByHeader: false, swcMinify: true, modularizeImports: tslib_1.__assign({ "@koine/api": { transform: "@koine/api/{{member}}" }, "@koine/browser": { transform: "@koine/browser/{{member}}" }, "@koine/dom": { transform: "@koine/dom/{{member}}" }, "@koine/next/?(((\\w*)?/?)*)": {
|
|
227
|
+
transform: "@koine/next/{{ matches.[1] }}/{{member}}",
|
|
228
|
+
}, "@koine/react/?(((\\w*)?/?)*)": {
|
|
229
|
+
transform: "@koine/react/{{ matches.[1] }}/{{member}}",
|
|
230
|
+
}, "@koine/utils": { transform: "@koine/utils/{{member}}" } }, (custom["modularizeImports"] || {})), experimental: tslib_1.__assign({
|
|
227
231
|
// @see https://github.com/vercel/vercel/discussions/5973#discussioncomment-472618
|
|
228
232
|
// @see critters error https://github.com/vercel/next.js/issues/20742
|
|
229
233
|
// optimizeCss: true,
|
package/package.json
CHANGED
|
@@ -2,6 +2,15 @@
|
|
|
2
2
|
"name": "@koine/next",
|
|
3
3
|
"sideEffects": false,
|
|
4
4
|
"peerDependenciesMeta": {
|
|
5
|
+
"@hookform/resolvers": {
|
|
6
|
+
"optional": true
|
|
7
|
+
},
|
|
8
|
+
"@kuus/yup": {
|
|
9
|
+
"optional": true
|
|
10
|
+
},
|
|
11
|
+
"@mui/base": {
|
|
12
|
+
"optional": true
|
|
13
|
+
},
|
|
5
14
|
"@mui/material": {
|
|
6
15
|
"optional": true
|
|
7
16
|
},
|
|
@@ -14,15 +23,36 @@
|
|
|
14
23
|
"@emotion/styled": {
|
|
15
24
|
"optional": true
|
|
16
25
|
},
|
|
26
|
+
"@tiptap/react": {
|
|
27
|
+
"optional": true
|
|
28
|
+
},
|
|
29
|
+
"@tiptap/starter-kit": {
|
|
30
|
+
"optional": true
|
|
31
|
+
},
|
|
32
|
+
"date-fns": {
|
|
33
|
+
"optional": true
|
|
34
|
+
},
|
|
17
35
|
"framer-motion": {
|
|
18
36
|
"optional": true
|
|
19
37
|
},
|
|
20
38
|
"next-auth": {
|
|
21
39
|
"optional": true
|
|
22
40
|
},
|
|
41
|
+
"react-hook-form": {
|
|
42
|
+
"optional": true
|
|
43
|
+
},
|
|
44
|
+
"react-icons": {
|
|
45
|
+
"optional": true
|
|
46
|
+
},
|
|
23
47
|
"react-is": {
|
|
24
48
|
"optional": true
|
|
25
49
|
},
|
|
50
|
+
"react-popper": {
|
|
51
|
+
"optional": true
|
|
52
|
+
},
|
|
53
|
+
"react-swipeable": {
|
|
54
|
+
"optional": true
|
|
55
|
+
},
|
|
26
56
|
"styled-components": {
|
|
27
57
|
"optional": true
|
|
28
58
|
}
|
|
@@ -33,11 +63,11 @@
|
|
|
33
63
|
"peerDependencies": {
|
|
34
64
|
"react": "18.2.0",
|
|
35
65
|
"next": "13.1.6",
|
|
36
|
-
"@koine/browser": "1.1.
|
|
37
|
-
"@koine/utils": "1.1.
|
|
66
|
+
"@koine/browser": "1.1.1",
|
|
67
|
+
"@koine/utils": "1.1.1",
|
|
38
68
|
"ts-debounce": "4.0.0",
|
|
39
69
|
"type-fest": "3.5.3",
|
|
40
|
-
"@koine/dom": "1.1.
|
|
70
|
+
"@koine/dom": "1.1.1",
|
|
41
71
|
"date-fns-tz": "1.3.7",
|
|
42
72
|
"framer-motion": "7.10.3",
|
|
43
73
|
"next-auth": "4.19.0",
|
|
@@ -59,6 +89,6 @@
|
|
|
59
89
|
"next-seo": "5.15.0",
|
|
60
90
|
"@hookform/resolvers": "2.9.10"
|
|
61
91
|
},
|
|
62
|
-
"version": "1.1.
|
|
92
|
+
"version": "1.1.1",
|
|
63
93
|
"module": "./index.js"
|
|
64
94
|
}
|