Skip to content

Commit

Permalink
chore: lint
Browse files Browse the repository at this point in the history
  • Loading branch information
antfu committed Dec 3, 2024
1 parent cd181ad commit 9b16ed8
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion examples/multiple-pages-pwa/src/main.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import routes from '~pages'
import { ViteSSG } from 'vite-ssg'
import routes from '~pages'
import App from './App.vue'

export const createApp = ViteSSG(App, {
Expand Down
2 changes: 1 addition & 1 deletion examples/multiple-pages-with-store/src/main.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import devalue from '@nuxt/devalue'
import routes from '~pages'
import { createPinia } from 'pinia'
import { ViteSSG } from 'vite-ssg'
import routes from '~pages'
import App from './App.vue'
import { useRootStore } from './store/root'

Expand Down
2 changes: 1 addition & 1 deletion examples/multiple-pages/src/entry.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import routes from '~pages'
import { ViteSSG } from 'vite-ssg'
import routes from '~pages'
import App from './App.vue'

export const createApp = ViteSSG(App, {
Expand Down
18 changes: 9 additions & 9 deletions pnpm-workspace.yaml
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
packages:
- examples/*
catalog:
"@antfu/eslint-config": ^3.11.2
"@nuxt/devalue": ^2.0.2
"@types/fs-extra": ^11.0.4
"@types/html-minifier-terser": ^7.0.2
"@types/jsdom": ^21.1.7
"@types/yargs": ^17.0.33
"@unhead/dom": ^1.11.13
"@unhead/vue": ^1.11.13
"@vitejs/plugin-vue": ^5.2.1
'@antfu/eslint-config': ^3.11.2
'@nuxt/devalue': ^2.0.2
'@types/fs-extra': ^11.0.4
'@types/html-minifier-terser': ^7.0.2
'@types/jsdom': ^21.1.7
'@types/yargs': ^17.0.33
'@unhead/dom': ^1.11.13
'@unhead/vue': ^1.11.13
'@vitejs/plugin-vue': ^5.2.1
beasties: ^0.1.0
bumpp: ^9.8.1
critters: ^0.0.25
Expand Down
2 changes: 1 addition & 1 deletion src/node/build.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import type { InlineConfig, ResolvedConfig } from 'vite'
import type { VitePluginPWAAPI } from 'vite-plugin-pwa'
import type { SSRContext } from 'vue/server-renderer'
import type { RouteRecordRaw } from 'vue-router'
import type { SSRContext } from 'vue/server-renderer'
import type { ViteSSGContext, ViteSSGOptions } from '../types'
import { createRequire } from 'node:module'
/* eslint-disable no-console */
Expand Down

0 comments on commit 9b16ed8

Please sign in to comment.