Skip to content

Commit 6df625c

Browse files
committed
fix(live-tiles): Only include the built files as a part of the package
Previously we accidentally included source files, config files, assets, etc, with the built package; we now no longer waste data like that.
1 parent 27a6a3f commit 6df625c

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,8 @@
3636
}
3737
],
3838
"workspaces": [
39-
"apps/*",
40-
"packages/*"
39+
"apps/**",
40+
"packages/**"
4141
],
4242
"lint-staged": {
4343
"*.{ts,tsx}": [

packages/live-tiles/package.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,10 @@
99
"engines": {
1010
"node": ">=24.0.0"
1111
},
12+
"files": [
13+
"dist",
14+
"README.md"
15+
],
1216
"exports": {
1317
".": {
1418
"import": "./dist/index.js",

typedoc.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,5 +40,6 @@
4040
"externalPattern": ["**/node_modules/**", ".*+(apps|packages)(/[^/]+)/.*"],
4141
"sourceLinkExternal": true,
4242
"footerLastModified": true,
43+
"useTsLinkResolution": true,
4344
"githubPages": true
4445
}

0 commit comments

Comments
 (0)