@uniformdev/uniform-nuxt 18.9.1-alpha.4 → 18.11.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/dist/module.json +1 -1
- package/dist/runtime/plugin.mjs +4 -1
- package/package.json +6 -6
package/dist/module.json
CHANGED
package/dist/runtime/plugin.mjs
CHANGED
|
@@ -29,7 +29,10 @@ import {
|
|
|
29
29
|
useState
|
|
30
30
|
} from "#app";
|
|
31
31
|
import userProvidedContextInstance from "#build/uniform/context/instance";
|
|
32
|
-
const log = process.env.NODE_ENV === "development" ? (
|
|
32
|
+
const log = process.env.NODE_ENV === "development" ? (
|
|
33
|
+
// eslint-disable-next-line no-console
|
|
34
|
+
(...args) => console.log(...args)
|
|
35
|
+
) : () => {
|
|
33
36
|
};
|
|
34
37
|
export default defineNuxtPlugin((nuxtApp) => {
|
|
35
38
|
if (nuxtApp.$uniformIsSetup) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@uniformdev/uniform-nuxt",
|
|
3
|
-
"version": "18.
|
|
3
|
+
"version": "18.11.0",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"exports": {
|
|
@@ -35,10 +35,10 @@
|
|
|
35
35
|
"@nuxt/module-builder": "0.2.1",
|
|
36
36
|
"@nuxt/schema": "3.2.0",
|
|
37
37
|
"@nuxtjs/eslint-config-typescript": "12.0.0",
|
|
38
|
-
"@uniformdev/canvas": "18.
|
|
39
|
-
"@uniformdev/canvas-vue": "18.
|
|
40
|
-
"@uniformdev/context": "18.
|
|
41
|
-
"@uniformdev/context-vue": "18.
|
|
38
|
+
"@uniformdev/canvas": "18.11.0",
|
|
39
|
+
"@uniformdev/canvas-vue": "18.11.0",
|
|
40
|
+
"@uniformdev/context": "18.11.0",
|
|
41
|
+
"@uniformdev/context-vue": "18.11.0",
|
|
42
42
|
"esbuild": "0.17.5",
|
|
43
43
|
"eslint": "^8.31.0",
|
|
44
44
|
"nuxt": "3.2.0",
|
|
@@ -48,5 +48,5 @@
|
|
|
48
48
|
"publishConfig": {
|
|
49
49
|
"access": "public"
|
|
50
50
|
},
|
|
51
|
-
"gitHead": "
|
|
51
|
+
"gitHead": "87433008a407efd686f3ab0d37eb5ceece6e66db"
|
|
52
52
|
}
|