diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 00000000..0853e5a7 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,2 @@ + * text=auto eol=lf + diff --git a/examples/base-path/package.json b/examples/base-path/package.json index d3892ff2..408174e6 100644 --- a/examples/base-path/package.json +++ b/examples/base-path/package.json @@ -4,7 +4,7 @@ "description": "Example site built with elm-pages.", "scripts": { "start": "elm-pages dev --base base-path", - "test": "elm-pages build --debug --base base-path && git diff --exit-code --ignore-space-change ./dist", + "test": "elm-pages build --debug --base base-path && git diff --exit-code ./dist", "serve": "npm run build -- --base base-path && mv ./dist/* ./dist/base-path/ && http-server ./dist -a localhost -p 3000 -c-1", "build": "elm-pages build --base base-path" }, diff --git a/examples/escaping/package.json b/examples/escaping/package.json index 3cd1e84d..d379eb55 100644 --- a/examples/escaping/package.json +++ b/examples/escaping/package.json @@ -4,7 +4,7 @@ "description": "Example site built with elm-pages.", "scripts": { "start": "elm-pages dev", - "test": "elm-pages build --debug && git diff --exit-code --ignore-space-change ./dist && elm-pages build && git diff --exit-code --ignore-space-change ./dist", + "test": "elm-pages build --debug && git diff --exit-code ./dist && elm-pages build && git diff --exit-code ./dist", "serve": "npm run build && http-server ./dist -a localhost -p 3000 -c-1", "build": "elm-pages build" },