Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Attach a uuid to each event so dedupe can happen server-side #16

Merged
merged 32 commits into from
Apr 21, 2024
Merged
Show file tree
Hide file tree
Changes from 18 commits
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
40df5e6
Make it possible to test locally again by making the package.json a .…
grahamc Apr 19, 2024
3b04138
Send a UUID for every event
grahamc Apr 19, 2024
85584ca
Prune the package.json
grahamc Apr 19, 2024
6adc39c
Detect OS and OS Version a bit more robustly
grahamc Apr 19, 2024
c65adbc
Replace the junky string concat with a nicer .cjs prebuid script
grahamc Apr 20, 2024
5823a60
Import version from package.json directly
lucperkins Apr 20, 2024
7484cb5
Rework bundling
lucperkins Apr 20, 2024
dadab92
Fix eslint variable shadowing issue
lucperkins Apr 20, 2024
b1c083b
Remove prebuild step from Actions workflow
lucperkins Apr 20, 2024
ea1d133
Add tsup dependency
lucperkins Apr 20, 2024
a1ae8ac
Fix docs script by specifying proper entrypoint file
lucperkins Apr 20, 2024
685440c
Fix merge conflict in package.json
lucperkins Apr 20, 2024
ae4bf3d
Add build config
lucperkins Apr 20, 2024
748e65a
Make tsup output type declaration
lucperkins Apr 20, 2024
529a09a
Merge pull request #17 from DeterminateSystems/direct-import-package-…
lucperkins Apr 20, 2024
ab427a2
Fix merge conflict with main
lucperkins Apr 20, 2024
3d0ddf6
Remove unnecessary item from gitignore
lucperkins Apr 20, 2024
67cd59a
Add sourcemap to output (just in case someone needs it)
lucperkins Apr 20, 2024
6249973
Produce only .js files, not .cjs
lucperkins Apr 20, 2024
0d7b063
Use proper casing
lucperkins Apr 20, 2024
e9c2081
Some more docs
lucperkins Apr 20, 2024
fb9bc3c
Fix camel casing issue
lucperkins Apr 20, 2024
1816287
Regenerate dist
lucperkins Apr 20, 2024
7a5ce0d
Try disabling bundling
lucperkins Apr 20, 2024
de7139f
Revert "Try disabling bundling"
lucperkins Apr 20, 2024
59cc1a6
Switch to cjs format
lucperkins Apr 20, 2024
2d875bd
Revert "Switch to cjs format"
lucperkins Apr 20, 2024
6539502
Add explicit Node 20 target
lucperkins Apr 20, 2024
ed47340
Generate cjs as well
lucperkins Apr 21, 2024
7e0b37b
Make @actions/exec external
lucperkins Apr 21, 2024
4cabd48
Add @actions/exec to normal dependencies
lucperkins Apr 21, 2024
6108a5c
Make linux-release-info an external module
lucperkins Apr 21, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,11 @@
"rules": {
"i18n-text/no-en": "off",
"eslint-comments/no-use": "off",
"import/extensions": [
"error",
"ignorePackages",
{ "json": "always", "ts": "never" }
],
"import/no-namespace": "off",
"no-unused-vars": "off",
"@typescript-eslint/no-unused-vars": [
Expand Down
2 changes: 0 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,6 @@ jobs:
run: nix develop --command pnpm install
- name: Check formatting
run: nix develop --command pnpm run check-fmt
- name: Run pre-build
run: nix develop --command pnpm run prebuild
- name: Lint
run: nix develop --command pnpm run lint
- name: Build
Expand Down
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -106,4 +106,3 @@ lib/**/*
# Nix builds
result

src/package.json
9 changes: 0 additions & 9 deletions dist/correlation.d.ts

This file was deleted.

86 changes: 0 additions & 86 deletions dist/correlation.js

This file was deleted.

7 changes: 0 additions & 7 deletions dist/helpers.d.ts

This file was deleted.

44 changes: 0 additions & 44 deletions dist/helpers.js

This file was deleted.

Loading