Skip to content

Commit

Permalink
fix: node modules components (#38)
Browse files Browse the repository at this point in the history
  • Loading branch information
stafyniaksacha authored Aug 29, 2022
1 parent e0ab6b3 commit d984090
Show file tree
Hide file tree
Showing 6 changed files with 5,556 additions and 82 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"dev": "nuxi dev playground",
"dev:build": "nuxi build playground",
"dev:generate": "nuxi generate playground",
"dev:prepare": "nuxt-module-build --stub && nuxi prepare playground",
"dev:prepare": "nuxt-module-build --stub && yarn install --cwd ./playground && nuxi prepare playground",
"lint": "eslint --ext .js,.ts,.vue .",
"test": "vitest",
"release": "yarn test && standard-version && git push --follow-tags && npm publish"
Expand Down
1 change: 1 addition & 0 deletions playground/nuxt.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ export default defineNuxtConfig({
]
},
modules: [
'@nuxt/content',
nuxtMetaModule
]
})
11 changes: 10 additions & 1 deletion playground/package.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,13 @@
{
"private": true,
"name": "nuxt-component-meta-playground"
"name": "nuxt-component-meta-playground",
"devDependencies": {
"@nuxt/content": "npm:@nuxt/content-edge@latest",
"nuxt": "^3.0.0-rc.8"
},
"scripts": {
"dev": "nuxi dev",
"build": "nuxi build",
"generate": "nuxi generate"
}
}
Loading

0 comments on commit d984090

Please sign in to comment.