Skip to content

Commit 223b88d

Browse files
Merge pull request #5755 from material-components:lit-bump
PiperOrigin-RevId: 704823849
2 parents d69f2f2 + 488f38a commit 223b88d

File tree

3 files changed

+71
-29
lines changed

3 files changed

+71
-29
lines changed

catalog/package.json

Lines changed: 58 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,11 @@
2323
},
2424
"wireit": {
2525
"build:dev": {
26-
"dependencies": ["build:dev:eleventy", "build:dev:ts", "build:type-check"]
26+
"dependencies": [
27+
"build:dev:eleventy",
28+
"build:dev:ts",
29+
"build:type-check"
30+
]
2731
},
2832
"build:dev:eleventy": {
2933
"command": "NODE_ENV=DEV eleventy",
@@ -34,21 +38,42 @@
3438
"eleventy.config.cjs",
3539
"stories"
3640
],
37-
"output": ["_dev"],
38-
"dependencies": ["build:dev:ts", "build:copy-docs", "build:copy-stories"]
41+
"output": [
42+
"_dev"
43+
],
44+
"dependencies": [
45+
"build:dev:ts",
46+
"build:copy-docs",
47+
"build:copy-stories"
48+
]
3949
},
4050
"build:dev:ts": {
4151
"command": "NODE_ENV=DEV node esbuild.config.mjs",
42-
"files": ["src", "tsconfig.json", "esbuild.config.mjs"],
43-
"output": ["lib"],
44-
"dependencies": ["..:build"]
52+
"files": [
53+
"src",
54+
"tsconfig.json",
55+
"esbuild.config.mjs"
56+
],
57+
"output": [
58+
"lib"
59+
],
60+
"dependencies": [
61+
"..:build"
62+
]
4563
},
4664
"build:type-check": {
4765
"command": "tsc -p tsconfig.json --pretty --incremental",
48-
"files": ["src", "tsconfig.json"],
66+
"files": [
67+
"src",
68+
"tsconfig.json"
69+
],
4970
"clean": "if-file-deleted",
50-
"output": ["tsconfig.tsbuildinfo"],
51-
"dependencies": ["..:build"]
71+
"output": [
72+
"tsconfig.tsbuildinfo"
73+
],
74+
"dependencies": [
75+
"..:build"
76+
]
5277
},
5378
"build:prod": {
5479
"dependencies": [
@@ -66,14 +91,28 @@
6691
"eleventy.config.cjs",
6792
"stories/"
6893
],
69-
"output": ["_prod/"],
70-
"dependencies": ["build:prod:ts", "build:copy-docs", "build:copy-stories"]
94+
"output": [
95+
"_prod/"
96+
],
97+
"dependencies": [
98+
"build:prod:ts",
99+
"build:copy-docs",
100+
"build:copy-stories"
101+
]
71102
},
72103
"build:prod:ts": {
73104
"command": "NODE_ENV=PROD node esbuild.config.mjs",
74-
"files": ["src", "tsconfig.json", "esbuild.config.mjs"],
75-
"output": ["build"],
76-
"dependencies": ["..:build"]
105+
"files": [
106+
"src",
107+
"tsconfig.json",
108+
"esbuild.config.mjs"
109+
],
110+
"output": [
111+
"build"
112+
],
113+
"dependencies": [
114+
"..:build"
115+
]
77116
},
78117
"build:copy-docs": {
79118
"command": "node scripts/copy-docs.mjs",
@@ -121,7 +160,10 @@
121160
"!node_modules",
122161
"!../node_modules"
123162
],
124-
"output": ["stories/*/**/*", "!stories/components"]
163+
"output": [
164+
"stories/*/**/*",
165+
"!stories/components"
166+
]
125167
}
126168
},
127169
"license": "Apache-2.0",
@@ -132,7 +174,7 @@
132174
"@material/mwc-drawer": "^0.27.0",
133175
"@material/web": "*",
134176
"@preact/signals-core": "^1.3.0",
135-
"lit": "^2.7.4",
177+
"lit": "^2.8.0",
136178
"playground-elements": "^0.17.0",
137179
"postdoc-lib": "^1.0.3"
138180
},

package-lock.json

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

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@
5656
"catalog"
5757
],
5858
"dependencies": {
59-
"lit": "^2.7.4 || ^3.0.0",
59+
"lit": "^2.8.0 || ^3.0.0",
6060
"tslib": "^2.4.0"
6161
},
6262
"devDependencies": {

0 commit comments

Comments
 (0)