Skip to content

Commit 839e65e

Browse files
committed
Typedocgsgs
1 parent 4f3c693 commit 839e65e

File tree

8 files changed

+432
-181
lines changed

8 files changed

+432
-181
lines changed

docs/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,13 @@
99
"docs:watch": "typedoc --options ./typedoc.config.json --watch"
1010
},
1111
"devDependencies": {
12-
"typedoc": "^0.26.7",
12+
"typedoc": "^0.26.10",
1313
"typedoc-github-wiki-theme": "^2.0.0",
1414
"typedoc-gitlab-wiki-theme": "^2.0.1",
1515
"typedoc-plugin-markdown": "^4.2.7",
1616
"typedoc-plugin-markdown-pages": "^0.3.0",
17-
"typedoc-plugin-mdn-links": "^3.2.12",
18-
"typescript": "^5.6.2"
17+
"typedoc-plugin-mdn-links": "^3.3.4",
18+
"typescript": "^5.6.3"
1919
},
2020
"engines": {
2121
"node": ">= 18"

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
"concurrently": "^9.0.1",
2222
"prettier": "^3.0.3",
2323
"prettier-plugin-ember-template-tag": "^2.0.0",
24-
"release-plan": "^0.9.2"
24+
"release-plan": "^0.10.0"
2525
},
2626
"volta": {
2727
"node": "20.11.1",

pnpm-lock.yaml

Lines changed: 421 additions & 170 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

reactiveweb/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@
9797
"prettier-plugin-ember-template-tag": "^2.0.0",
9898
"rollup": "^4.21.3",
9999
"rollup-plugin-copy": "^3.5.0",
100-
"typescript": "^5.6.2"
100+
"typescript": "^5.6.3"
101101
},
102102
"publishConfig": {
103103
"registry": "https://registry.npmjs.org"

reactiveweb/src/image.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import { trackedFunction } from './function.ts';
66
* Reactively load an Image with access to loading / error state.
77
*
88
* Usage in a component
9-
* ```gjs
9+
* ```js
1010
* import { ReactiveImage } from 'reactiveweb/image';
1111
* <template>
1212
* {{#let (ReactiveImage 'https://path.to.image') as |state|}}

reactiveweb/src/sync.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
*
99
* As a result, tracked data should not be set within `sync`.
1010
* Example usage of when you may want to use `sync`
11-
* ```gjs
11+
* ```js
1212
* import { sync } from 'reactiveweb/sync';
1313
* import { fn } from '@ember/helper';
1414
*
@@ -24,7 +24,7 @@
2424
* `sync` does autotrack, so accessing tracked data within the function passed to sync
2525
* will cause updates to be re-synced.
2626
*
27-
* ```gjs
27+
* ```js
2828
* import { sync } from 'reactiveweb/sync';
2929
* import { fn } from '@ember/helper';
3030
*
@@ -53,7 +53,7 @@
5353
* since auto-tracking is synchronous, but the probability is non-0.
5454
*
5555
* Example of detaching from auto-tracking:
56-
* ```gjs
56+
* ```js
5757
* import { sync } from 'reactiveweb/sync';
5858
*
5959
* class Demo extends Component {

tests/min-supported/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@
8787
"stylelint-config-standard": "^36.0.1",
8888
"stylelint-prettier": "^5.0.2",
8989
"tracked-built-ins": "^3.3.0",
90-
"typescript": "^5.6.2",
90+
"typescript": "^5.6.3",
9191
"webpack": "^5.89.0"
9292
},
9393
"engines": {

tests/test-app/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@
8888
"stylelint-config-standard": "^36.0.1",
8989
"stylelint-prettier": "^5.0.2",
9090
"tracked-built-ins": "^3.3.0",
91-
"typescript": "^5.6.2",
91+
"typescript": "^5.6.3",
9292
"webpack": "^5.89.0"
9393
},
9494
"engines": {

0 commit comments

Comments
 (0)