Skip to content

Commit

Permalink
fix: upgrade deps
Browse files Browse the repository at this point in the history
  • Loading branch information
DylanPiercey committed Jan 5, 2022
1 parent ac32fe6 commit f91342d
Show file tree
Hide file tree
Showing 13 changed files with 3,648 additions and 2,889 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,4 +28,4 @@ jobs:
- name: Run tests
run: npm run ci:test
- name: Report code coverage
run: npm run ci:report
uses: codecov/codecov-action@v2
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,4 @@ dist

# Coverage
.nyc_output
coverage
coverage
3 changes: 2 additions & 1 deletion .lintstagedrc.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
{
"*.ts": ["eslint --fix", "prettier --write"],
"*{.js,.json,.md,.yml,rc}": ["prettier --write"]
"*{.js,.json,.md,.yml,rc}": ["prettier --write"],
"./package.json": ["fixpack"]
}
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2021 eBay Inc. and contributors
Copyright (c) 2022 eBay Inc. and contributors

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
8 changes: 4 additions & 4 deletions build.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ import { build } from "esbuild";
outbase: srcdir,
platform: "node",
target: ["es2019"],
define: {
"process.env.NODE_ENV": "'production'",
},
});
})().catch((err) => {
console.error(err);
process.exit(1);
});
})();
Loading

0 comments on commit f91342d

Please sign in to comment.