10 years later #1
3 changed files with 6 additions and 1 deletions
|
|
@ -1,5 +1,7 @@
|
||||||
|
const { EleventyHtmlBasePlugin } = require("@11ty/eleventy");
|
||||||
|
|
||||||
module.exports = function (eleventyConfig) {
|
module.exports = function (eleventyConfig) {
|
||||||
// eleventyConfig.addPlugin(EleventyHtmlBasePlugin);
|
eleventyConfig.addPlugin(EleventyHtmlBasePlugin);
|
||||||
|
|
||||||
eleventyConfig.setLiquidOptions({
|
eleventyConfig.setLiquidOptions({
|
||||||
// greedy: false,
|
// greedy: false,
|
||||||
|
|
|
||||||
1
.gitignore
vendored
1
.gitignore
vendored
|
|
@ -1,6 +1,7 @@
|
||||||
# HIPPIE
|
# HIPPIE
|
||||||
###################
|
###################
|
||||||
build/**
|
build/**
|
||||||
|
deploy/**
|
||||||
reports/**
|
reports/**
|
||||||
source/art/sprites/
|
source/art/sprites/
|
||||||
source/art/images/sprite.*
|
source/art/images/sprite.*
|
||||||
|
|
|
||||||
|
|
@ -24,9 +24,11 @@
|
||||||
"clean:report": "rm -rf report/*",
|
"clean:report": "rm -rf report/*",
|
||||||
"clean:test": "rm -rf test/*",
|
"clean:test": "rm -rf test/*",
|
||||||
"style:compile": "sass source/style:build/css --load-path=vendor",
|
"style:compile": "sass source/style:build/css --load-path=vendor",
|
||||||
|
"style:deploy": "sass source/style:deploy/css --load-path=vendor",
|
||||||
"style:watch": "sass --watch source/style:build/css --load-path=vendor",
|
"style:watch": "sass --watch source/style:build/css --load-path=vendor",
|
||||||
"build:new": "npm run clean:build && npx @11ty/eleventy && npm run style:compile",
|
"build:new": "npm run clean:build && npx @11ty/eleventy && npm run style:compile",
|
||||||
"build": "npx @11ty/eleventy && npm run style:compile",
|
"build": "npx @11ty/eleventy && npm run style:compile",
|
||||||
|
"deploy": "npm run clean:deploy && npx @11ty/eleventy --output=deploy --pathprefix=hippie && npm run style:deploy",
|
||||||
"serve": "npm run style:watch & npx @11ty/eleventy --serve"
|
"serve": "npm run style:watch & npx @11ty/eleventy --serve"
|
||||||
},
|
},
|
||||||
"private": true,
|
"private": true,
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue