convert to pnpm workspace

This commit is contained in:
Robert Soriano
2022-05-17 08:57:07 -07:00
parent e9224c3c5e
commit 3df0b44d44
25 changed files with 420 additions and 214 deletions

View File

@@ -1,8 +0,0 @@
<script setup>
</script>
<template>
<div>
Nuxt module playground!
</div>
</template>

View File

@@ -1,11 +0,0 @@
import { defineNuxtConfig } from 'nuxt'
import MyModule from '..'
export default defineNuxtConfig({
modules: [
MyModule,
],
myModule: {
addPlugin: true,
},
})

View File

@@ -1,4 +0,0 @@
{
"name": "playground",
"private": true
}

View File

@@ -1,11 +0,0 @@
// generated by trpc-nuxt
import * as trpc from '@trpc/server'
export const router = trpc
.router()
.query('hello', {
resolve: () => 'world',
})
export type Router = typeof router