Skip to content
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
3e2dfa5
Initial provider-consumer sample, WIP.
ericsnekbytes Aug 31, 2023
7442fe6
Fixed method name.
ericsnekbytes Aug 31, 2023
0c731cf
Added comments to the provider-consumer samples.
ericsnekbytes Sep 1, 2023
f3fe812
Added comments to provider/consumer example.
ericsnekbytes Sep 1, 2023
14350de
Comment cleanup.
ericsnekbytes Sep 1, 2023
2eb6512
Minor formatting.
ericsnekbytes Sep 1, 2023
9d115b5
Updated project description text.
ericsnekbytes Sep 1, 2023
03f9cc9
Updated project description text.
ericsnekbytes Sep 1, 2023
de11b88
Minor formatting.
ericsnekbytes Sep 1, 2023
7a5c3c0
Minor formatting.
ericsnekbytes Sep 1, 2023
82d1ad5
Added third provider-consumer sub example, an additional consumer.
ericsnekbytes Sep 1, 2023
76438b9
Added step counter signal for display updates.
ericsnekbytes Sep 26, 2023
c086518
Update readme
ericsnekbytes Sep 28, 2023
e46c5b9
Renamed folders to match poackage names.
ericsnekbytes Sep 28, 2023
9645adf
Updated local dependency paths.
ericsnekbytes Sep 28, 2023
8bab7f7
Updated extension specific READMEs.
ericsnekbytes Sep 28, 2023
44238f1
Added preview, updated README.
ericsnekbytes Sep 28, 2023
efbe9a2
Added singleton package metadata notes.
ericsnekbytes Sep 28, 2023
8b3872c
Update README/fix links.
ericsnekbytes Sep 29, 2023
afee7d7
Updated titles/links.
ericsnekbytes Sep 29, 2023
e1a5525
Update titles/links in READMEs.
ericsnekbytes Sep 29, 2023
2689a44
Updated root package metadata.
ericsnekbytes Oct 2, 2023
164b0ad
Merge branch 'main' into provider_consumer_example
ericsnekbytes Jan 24, 2024
b1452cd
Workaround for dependency 'any' usage and version conflicts.
ericsnekbytes Jun 9, 2025
e420ec7
Linting.
ericsnekbytes Jun 9, 2025
ea8a711
Fix linting errors for unrelated packages.
ericsnekbytes Jun 9, 2025
626490b
Modify tsconfigs: Re-enable implicit any checks, add skipLibCheck.
ericsnekbytes Jun 9, 2025
bfb24cc
Extra linting.
ericsnekbytes Jun 9, 2025
cb58d6c
Revised to address feedback.
ericsnekbytes Jun 9, 2025
101cfd6
Added explanation of declaration merging.
ericsnekbytes Jun 9, 2025
1e56e65
Add changes from PR feedback.
ericsnekbytes Jun 9, 2025
7b0f58e
Add updated version of entities with types.
ericsnekbytes Jun 10, 2025
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
Empty file added leap_counter_extension/LICENSE
Empty file.
2 changes: 1 addition & 1 deletion leap_counter_extension/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"module": "esnext",
"moduleResolution": "node",
"noEmitOnError": true,
"noImplicitAny": true,
"noImplicitAny": false,
"noUnusedLocals": true,
"preserveWatchOutput": true,
"resolveJsonModule": true,
Expand Down
Empty file added step_counter/LICENSE
Empty file.
4 changes: 3 additions & 1 deletion step_counter/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -63,18 +63,20 @@
"devDependencies": {
"@jupyterlab/builder": "^4.0.0",
"@jupyterlab/testutils": "^4.0.0",
"@types/entities": "^2.0.2",
"@types/jest": "^29.2.0",
"@types/json-schema": "^7.0.11",
"@types/react": "^18.0.26",
"@types/react-addons-linked-state-mixin": "^0.14.22",
"@typescript-eslint/eslint-plugin": "^6.1.0",
"@typescript-eslint/parser": "^6.1.0",
"css-loader": "^6.7.1",
"entities": "^6.0.0",
"eslint": "^8.36.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^5.0.0",
"jest": "^29.2.0",
"npm-run-all": "^4.1.5",
"parse5": "^7.3.0",
"prettier": "^3.0.0",
"rimraf": "^5.0.1",
"source-map-loader": "^1.0.2",
Expand Down
2 changes: 1 addition & 1 deletion step_counter/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"module": "esnext",
"moduleResolution": "node",
"noEmitOnError": true,
"noImplicitAny": true,
"noImplicitAny": false,
"noUnusedLocals": true,
"preserveWatchOutput": true,
"resolveJsonModule": true,
Expand Down
Empty file added step_counter_extension/LICENSE
Empty file.
2 changes: 1 addition & 1 deletion step_counter_extension/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"module": "esnext",
"moduleResolution": "node",
"noEmitOnError": true,
"noImplicitAny": true,
"noImplicitAny": false,
"noUnusedLocals": true,
"preserveWatchOutput": true,
"resolveJsonModule": true,
Expand Down
Loading