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

Improving the exposed type system #195

Merged
merged 32 commits into from
Apr 7, 2021
Merged
Show file tree
Hide file tree
Changes from 25 commits
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
54b5ade
Adding some code formatting rules using prettier and editorconfig
aaronpowell Feb 26, 2020
cd0d757
adding eslint and removing tslint
aaronpowell Feb 26, 2020
52ff913
Fixing linting errors in tests
aaronpowell Feb 26, 2020
30988ae
Fixing linting issues across source
aaronpowell Feb 26, 2020
84cd899
remove tslint config file
aaronpowell Feb 26, 2020
2bac5ad
url.Url !== url.URL
aaronpowell Feb 26, 2020
601d269
was a bit aggressive on the cleanup before, deleted the backend mocks
aaronpowell Feb 26, 2020
34b736d
cleaning up the build task a little
aaronpowell Feb 26, 2020
e02c4bd
Introducing generic types for entity context
aaronpowell Feb 26, 2020
6fdbec9
removing use of any in entity tests
aaronpowell Feb 26, 2020
165abe0
Adding a TypeScript sample and having the orchestrator handle generic…
aaronpowell Feb 26, 2020
77d8b3a
Updating to current coding stardards in dev branch
aaronpowell Jun 15, 2020
848229a
Merge branch 'dev' into aaronpowell/typings
aaronpowell Jun 16, 2020
a3e561f
fixing some errors from a bad merge
aaronpowell Jun 16, 2020
51c20a0
adding linting on samples for consistency
aaronpowell Jun 16, 2020
51cc8be
showing explicit casting
aaronpowell Jun 16, 2020
6b76f2b
moving where the generic type is assigned
aaronpowell Jun 17, 2020
62026cb
fixing missing hidden from bad merge
aaronpowell Jun 17, 2020
50f8452
making orchestrators generic like entities
aaronpowell Jun 17, 2020
e734e9f
Rolling back the orchestrator typing
aaronpowell Jun 20, 2020
76ff243
turning entity getInput into its own typed value
aaronpowell Jun 20, 2020
9727aaa
creating a more complex sample and fixing some sample bugs
aaronpowell Jun 20, 2020
01d15e7
better default types
aaronpowell Jun 23, 2020
cff74a7
Merge branch 'dev' into aaronpowell/typings
aaronpowell Jun 24, 2020
8dc1bf9
Merge branch 'dev' into aaronpowell/typings
davidmrdavid Feb 17, 2021
0ff3426
Merge remote-tracking branch 'upstream/dev' into aaronpowell/typings
aaronpowell Mar 4, 2021
40d4937
rolling back some typing info
aaronpowell Mar 4, 2021
201dba5
removing generics from Task
aaronpowell Mar 4, 2021
f753157
removing unneeded typing
aaronpowell Apr 6, 2021
49d3e20
adding back in the hidden
aaronpowell Apr 6, 2021
4b1d3e2
Merge branch 'aaronpowell/typings' of https://github.com/aaronpowell/…
aaronpowell Apr 6, 2021
15d18da
put it back on the wrong line
aaronpowell Apr 6, 2021
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
14 changes: 7 additions & 7 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"trailingComma": "es5",
"tabWidth": 4,
"true": false,
"singleQuote": false,
"printWidth": 100
}
{
"trailingComma": "es5",
"tabWidth": 4,
"true": false,
"singleQuote": false,
"printWidth": 100
}
11 changes: 3 additions & 8 deletions .vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,3 @@
{
"recommendations": [
"editorconfig.editorconfig",
"eg2.vscode-npm-script",
"esbenp.prettier-vscode",
"dbaeumer.vscode-eslint"
]
}
{
"recommendations": ["editorconfig.editorconfig", "eg2.vscode-npm-script", "esbenp.prettier-vscode"]
}
Loading