Skip to content

Commit

Permalink
update @nuxt/module-builder to 0.7.1 & all devdeps update to latest
Browse files Browse the repository at this point in the history
  • Loading branch information
aborn committed Jun 13, 2024
1 parent 3bfa470 commit fa563e7
Show file tree
Hide file tree
Showing 4 changed files with 2,046 additions and 3,160 deletions.
1 change: 1 addition & 0 deletions .eslintrc
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
{
"parser": "@typescript-eslint/parser",
"extends": [
"@nuxtjs/eslint-config-typescript"
],
Expand Down
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,10 @@
"dist"
],
"scripts": {
"prepack": "nuxt-module-build",
"prepack": "nuxt-module-build build",
"dev": "nuxi dev playground",
"dev:build": "nuxi build playground",
"dev:prepare": "nuxt-module-build --stub && nuxi prepare playground",
"dev:prepare": "nuxt-module-build build --stub && nuxi prepare playground",
"release": "npm run lint && npm run test && npm run prepack && changelogen --release && npm publish && git push --follow-tags",
"lint": "eslint .",
"test": "vitest run",
Expand All @@ -43,11 +43,11 @@
"uuid": "^10.0.0"
},
"devDependencies": {
"@nuxt/module-builder": "latest",
"@nuxtjs/eslint-config-typescript": "latest",
"@nuxt/module-builder": "^0.7.1",
"@nuxtjs/eslint-config-typescript": "^12.1.0",
"@types/node": "^20.11.10",
"@types/uuid": "^8.3.4",
"eslint": "latest",
"eslint": "^9.4.0",
"nuxt": "^3.11.2",
"typescript": "^5.3.3"
},
Expand Down
4 changes: 2 additions & 2 deletions src/runtime/plugin.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { defineNuxtPlugin } from '#app'
import { Storage, StorageOptions } from './storage'
import { Storage } from './storage'
import { isUnset, isSet, getCleanUrl } from './utils/utils'
import { encrypt, decrypt } from './utils/encrypt'
import { decrypt } from './utils/encrypt'
import { useState, useFetch, useRuntimeConfig, useCookie } from '#imports'

interface UseState {
Expand Down
Loading

0 comments on commit fa563e7

Please sign in to comment.