Skip to content

Commit

Permalink
fix package-lock.json
Browse files Browse the repository at this point in the history
  • Loading branch information
gobengo committed Jan 18, 2024
1 parent f4b9f27 commit 80c1a41
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 6 deletions.
23 changes: 19 additions & 4 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 7 additions & 0 deletions specs-website/.eleventy.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
const pluginWebc = require("@11ty/eleventy-plugin-webc");
const path = require('path')

module.exports = function(eleventyConfig) {
const dir = path.resolve(__dirname, '../')

eleventyConfig.addPlugin(pluginWebc);

return {
dir,
}
};
5 changes: 3 additions & 2 deletions specs-website/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,9 @@
"name": "@web3-storage/specs-website",
"version": "0.0.0",
"scripts": {
"prepare": "npx eleventy --input=..",
"start": "npx eleventy --input=.. --serve"
"build:eleventy": "npx eleventy",
"prepare": "npm run build:eleventy",
"start": "npx eleventy --serve"
},
"dependencies": {
"@11ty/eleventy": "^2.0.1",
Expand Down

0 comments on commit 80c1a41

Please sign in to comment.