pidgin/nest

323f87f044d3
Parents 49597dbe3e1b
Children 2a9503b0173a
Adds tooling to clean up hugo output
  • +1 -0
    .hgignore
  • +8 -0
    package.json
  • --- a/.hgignore Tue Jan 15 18:30:42 2019 +0000
    +++ b/.hgignore Tue Jan 15 18:32:25 2019 +0000
    @@ -2,3 +2,4 @@
    resources/
    public/
    node_modules/
    +package-lock.json
    \ No newline at end of file
    --- /dev/null Thu Jan 01 00:00:00 1970 +0000
    +++ b/package.json Tue Jan 15 18:32:25 2019 +0000
    @@ -0,0 +1,8 @@
    +{
    + "dependencies": {
    + "js-beautify": "^1.8.9"
    + },
    + "scripts":{
    + "tidy": "js-beautify -f public/**/*.html -o public/**/*.html -m 0"
    + }
    +}