1
mirror of https://github.com/jakejarvis/jarv.is.git synced 2025-07-17 19:25:32 -04:00

fix npm-run-all

This commit is contained in:
2021-10-19 09:55:59 -04:00
parent 7fb02275ad
commit e51961c69a
4 changed files with 4 additions and 3 deletions

View File

@@ -37,5 +37,5 @@ module.exports = {
}, },
}, },
], ],
ignorePatterns: ["public/**", "static/assets/**"], ignorePatterns: ["public/**", "static/assets/**", ".yarn/**"],
}; };

View File

@@ -18,7 +18,7 @@ jobs:
with: with:
node-version: 14.x node-version: 14.x
cache: yarn cache: yarn
- run: yarn install --frozen-lockfile - run: yarn install --immutable
- run: yarn build - run: yarn build
env: env:
NODE_ENV: production NODE_ENV: production

View File

@@ -15,4 +15,5 @@ _vendor/
.vercel/ .vercel/
.lighthouseci/ .lighthouseci/
.vscode/ .vscode/
.yarn/
content/notes/dark-mode/example.html content/notes/dark-mode/example.html

View File

@@ -20,7 +20,7 @@
"clean": "gulp clean", "clean": "gulp clean",
"start": "gulp serve", "start": "gulp serve",
"start:vercel": "volta run --node 14 --npm 6 -- vercel dev", "start:vercel": "volta run --node 14 --npm 6 -- vercel dev",
"lint": "run-s lint:**", "lint": "run-s 'lint:**'",
"lint:js": "eslint .", "lint:js": "eslint .",
"lint:css": "stylelint '**/*.{css,scss}'", "lint:css": "stylelint '**/*.{css,scss}'",
"lint:md": "markdownlint '**/*.md' --config .markdownlintrc.json --ignore node_modules", "lint:md": "markdownlint '**/*.md' --config .markdownlintrc.json --ignore node_modules",