Skip to content

Commit

Permalink
Merge pull request #5755 from material-components:lit-bump
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 704823849
  • Loading branch information
copybara-github committed Dec 10, 2024
2 parents d69f2f2 + 488f38a commit 223b88d
Show file tree
Hide file tree
Showing 3 changed files with 71 additions and 29 deletions.
74 changes: 58 additions & 16 deletions catalog/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,11 @@
},
"wireit": {
"build:dev": {
"dependencies": ["build:dev:eleventy", "build:dev:ts", "build:type-check"]
"dependencies": [
"build:dev:eleventy",
"build:dev:ts",
"build:type-check"
]
},
"build:dev:eleventy": {
"command": "NODE_ENV=DEV eleventy",
Expand All @@ -34,21 +38,42 @@
"eleventy.config.cjs",
"stories"
],
"output": ["_dev"],
"dependencies": ["build:dev:ts", "build:copy-docs", "build:copy-stories"]
"output": [
"_dev"
],
"dependencies": [
"build:dev:ts",
"build:copy-docs",
"build:copy-stories"
]
},
"build:dev:ts": {
"command": "NODE_ENV=DEV node esbuild.config.mjs",
"files": ["src", "tsconfig.json", "esbuild.config.mjs"],
"output": ["lib"],
"dependencies": ["..:build"]
"files": [
"src",
"tsconfig.json",
"esbuild.config.mjs"
],
"output": [
"lib"
],
"dependencies": [
"..:build"
]
},
"build:type-check": {
"command": "tsc -p tsconfig.json --pretty --incremental",
"files": ["src", "tsconfig.json"],
"files": [
"src",
"tsconfig.json"
],
"clean": "if-file-deleted",
"output": ["tsconfig.tsbuildinfo"],
"dependencies": ["..:build"]
"output": [
"tsconfig.tsbuildinfo"
],
"dependencies": [
"..:build"
]
},
"build:prod": {
"dependencies": [
Expand All @@ -66,14 +91,28 @@
"eleventy.config.cjs",
"stories/"
],
"output": ["_prod/"],
"dependencies": ["build:prod:ts", "build:copy-docs", "build:copy-stories"]
"output": [
"_prod/"
],
"dependencies": [
"build:prod:ts",
"build:copy-docs",
"build:copy-stories"
]
},
"build:prod:ts": {
"command": "NODE_ENV=PROD node esbuild.config.mjs",
"files": ["src", "tsconfig.json", "esbuild.config.mjs"],
"output": ["build"],
"dependencies": ["..:build"]
"files": [
"src",
"tsconfig.json",
"esbuild.config.mjs"
],
"output": [
"build"
],
"dependencies": [
"..:build"
]
},
"build:copy-docs": {
"command": "node scripts/copy-docs.mjs",
Expand Down Expand Up @@ -121,7 +160,10 @@
"!node_modules",
"!../node_modules"
],
"output": ["stories/*/**/*", "!stories/components"]
"output": [
"stories/*/**/*",
"!stories/components"
]
}
},
"license": "Apache-2.0",
Expand All @@ -132,7 +174,7 @@
"@material/mwc-drawer": "^0.27.0",
"@material/web": "*",
"@preact/signals-core": "^1.3.0",
"lit": "^2.7.4",
"lit": "^2.8.0",
"playground-elements": "^0.17.0",
"postdoc-lib": "^1.0.3"
},
Expand Down
24 changes: 12 additions & 12 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@
"catalog"
],
"dependencies": {
"lit": "^2.7.4 || ^3.0.0",
"lit": "^2.8.0 || ^3.0.0",
"tslib": "^2.4.0"
},
"devDependencies": {
Expand Down

0 comments on commit 223b88d

Please sign in to comment.