Skip to content

Commit bf2cd3b

Browse files
authored
Merge pull request #3 from PureMVC/use-js-extensions-in-import-export
Minor version 1.0.8
2 parents 1814d5b + de1ffd5 commit bf2cd3b

21 files changed

+1960
-10
lines changed

VERSION

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,14 @@
11
PureMVC Typescript Utility - State Machine
22
--------------------------------------------------------------------------
3-
Release Date: 11/25/25
3+
Release Date: 12/19/25
44
Platform: Typescript
55
Version: 1
66
Revision: 0
7-
Minor: 7
7+
Minor: 8
88
Authors: Cliff Hall <[email protected]>
99
--------------------------------------------------------------------------
1010

1111
1.0.0 Initial port from the AS3 source.
1212
1.0.2 Fix entrypoint
1313
1.0.3 - 1.0.7 Configure npm publishing workflow
14+
1.0.8 - Add .js to filenames imported and exported throughout the library.

docs/.nojekyll

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
TypeDoc added this file to prevent GitHub Pages from using Jekyll. You can turn off this behavior by setting the `githubPages` option to false.

docs/assets/hierarchy.js

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/assets/highlight.css

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
:root {
2+
--light-hl-0: #795E26;
3+
--dark-hl-0: #DCDCAA;
4+
--light-hl-1: #000000;
5+
--dark-hl-1: #D4D4D4;
6+
--light-hl-2: #A31515;
7+
--dark-hl-2: #CE9178;
8+
--light-code-background: #FFFFFF;
9+
--dark-code-background: #1E1E1E;
10+
}
11+
12+
@media (prefers-color-scheme: light) { :root {
13+
--hl-0: var(--light-hl-0);
14+
--hl-1: var(--light-hl-1);
15+
--hl-2: var(--light-hl-2);
16+
--code-background: var(--light-code-background);
17+
} }
18+
19+
@media (prefers-color-scheme: dark) { :root {
20+
--hl-0: var(--dark-hl-0);
21+
--hl-1: var(--dark-hl-1);
22+
--hl-2: var(--dark-hl-2);
23+
--code-background: var(--dark-code-background);
24+
} }
25+
26+
:root[data-theme='light'] {
27+
--hl-0: var(--light-hl-0);
28+
--hl-1: var(--light-hl-1);
29+
--hl-2: var(--light-hl-2);
30+
--code-background: var(--light-code-background);
31+
}
32+
33+
:root[data-theme='dark'] {
34+
--hl-0: var(--dark-hl-0);
35+
--hl-1: var(--dark-hl-1);
36+
--hl-2: var(--dark-hl-2);
37+
--code-background: var(--dark-code-background);
38+
}
39+
40+
.hl-0 { color: var(--hl-0); }
41+
.hl-1 { color: var(--hl-1); }
42+
.hl-2 { color: var(--hl-2); }
43+
pre, code { background: var(--code-background); }

docs/assets/icons.js

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

0 commit comments

Comments
 (0)