mirror of https://github.com/elk-zone/elk.git
12 lines
197 B
TypeScript
12 lines
197 B
TypeScript
|
import { defineNuxtModule } from '@nuxt/kit'
|
||
|
import { check } from 'stale-dep'
|
||
|
|
||
|
export default defineNuxtModule({
|
||
|
meta: {
|
||
|
name: 'stale-dep',
|
||
|
},
|
||
|
setup() {
|
||
|
return check('pnpm')
|
||
|
},
|
||
|
})
|