Skip to content

Commit

Permalink
Adjust and generalize gitignore patterns
Browse files Browse the repository at this point in the history
This prepares us to add new Lambdas that run periodically with
https://arc.codes/docs/en/reference/project-manifest/scheduled.
  • Loading branch information
lpsinger committed Aug 30, 2023
1 parent 85fc0f0 commit f8a298c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ node_modules
# Generated by `npm run dev`, `npm run build`, etc.
/.cache
/build/static
/build/server/metafile.*
/build/**/metafile.*
/build/**/index.*
/coverage
*.tsbuildinfo
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"dev": "run-p \"dev:*\"",
"prepare": "husky install",
"deploy": "arc deploy --no-hydrate --prune --production",
"clean": "rimraf --glob build/static app/css build/server/index.* build/server/metafile.* \"app/**/*.css\" \"app/**/*.css.map\" build/email-incoming build/table-streams sam.json sam.yaml .cache",
"clean": "rimraf --glob build/static app/css \"build/**/index.*\" \"build/**/metafile.*\" \"app/**/*.css\" \"app/**/*.css.map\" sam.json sam.yaml .cache",
"test": "jest",
"test-coverage": "jest --coverage",
"typecheck": "tsc"
Expand Down

0 comments on commit f8a298c

Please sign in to comment.