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

Remove TSDX from build system #1175

Merged
merged 24 commits into from
Apr 30, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
eb128eb
Use ESLint instead of TSDX
julianna-ciq Mar 20, 2024
84673cf
Apply updated linting recommendations
julianna-ciq Mar 20, 2024
528bb40
Convert tsdx test to jest
julianna-ciq Mar 20, 2024
f189534
Convert 'build' script to use rollup
julianna-ciq Mar 20, 2024
4f6f578
Initial setup for watch
julianna-ciq Mar 20, 2024
e8a2c8b
Remove unnecessary resolution
julianna-ciq Mar 20, 2024
fa489ab
lint
julianna-ciq Mar 20, 2024
c9d0806
switch to rimraf for clean so it runs in powershell
kriswest Apr 9, 2024
80552fe
Merge remote-tracking branch 'upstream/main' into remove-tsdx
kriswest Apr 9, 2024
adca3ad
Rebuild types after merge
kriswest Apr 9, 2024
c359610
roll package version num
kriswest Apr 9, 2024
4d3bd02
Adding optional dependency to make npm i work on github actions/netlify
kriswest Apr 9, 2024
b4d6482
revert to beta numbering until module tested in the field
kriswest Apr 9, 2024
e59fdc9
Merge remote-tracking branch 'upstream/main' into remove-tsdx
kriswest Apr 10, 2024
0b3bf81
roll module verison number again (as 7 was taken)
kriswest Apr 10, 2024
22afac0
Merge branch 'main' into remove-tsdx
kriswest Apr 11, 2024
8fa9037
Merge remote-tracking branch 'upstream/main' into remove-tsdx
kriswest Apr 12, 2024
60ea695
disable linting rule for a couple of lines (where violating the rule …
kriswest Apr 12, 2024
c2cb9d5
comments
kriswest Apr 12, 2024
7e0a5e2
Export dist/index.js
julianna-ciq Apr 29, 2024
f52aec3
Merge branch 'remove-tsdx' of https://github.com/InteropIO/FDC3 into …
julianna-ciq Apr 29, 2024
69af9da
Changing NPM scripts so build and typegen functions only run when cal…
kriswest Apr 29, 2024
61e1866
Update package.json to set verison to 2.1.0 for latest release
kriswest Apr 30, 2024
27056d4
Merge remote-tracking branch 'upstream/main' into remove-tsdx
kriswest Apr 30, 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
2 changes: 2 additions & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
/node_modules/
dist/
31 changes: 31 additions & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
{
"root": true,
"parser": "@typescript-eslint/parser",
"parserOptions": {
"project": [
"./tsconfig.json"
]
},
"plugins": [
"@typescript-eslint",
"jsx-a11y"
],
"env": {
"browser": true,
"jest": true
},
"extends": [
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended",
"prettier"
],
"rules": {
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/no-unused-vars": [
"error",
{
"argsIgnorePattern": "^_"
}
]
}
}
14 changes: 14 additions & 0 deletions jest.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
/** @type {import('jest').Config} */
module.exports = {
moduleFileExtensions: ["js", "ts"],
globals: {
"ts-jest": {
isolatedModules: true
}
},
transform: {
"^.+\\.ts?$": "ts-jest"
},
testRegex: ".+\\.test\\.ts?$",
testEnvironment: "jsdom",
};
Loading
Loading