Skip to content

Commit fcfa916

Browse files
committed
chore: merge remote-tracking branch 'origin' into spectrum-two
2 parents fa8eb43 + 0ed8c4a commit fcfa916

File tree

33 files changed

+779
-674
lines changed

33 files changed

+779
-674
lines changed

.storybook/CHANGELOG.md

+9
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# Change Log
22

3+
## 12.0.4
4+
5+
### Patch Changes
6+
7+
- [#3527](https://github.com/adobe/spectrum-css/pull/3527) [`5f1751c`](https://github.com/adobe/spectrum-css/commit/5f1751c82a5fe55ae0d999f5f50cfeca4c8a5c75) Thanks [@castastrophe](https://github.com/castastrophe)! - Minor dependency updates to align with the larger project.
8+
9+
- Updated dependencies [[`5f1751c`](https://github.com/adobe/spectrum-css/commit/5f1751c82a5fe55ae0d999f5f50cfeca4c8a5c75)]:
10+
- @spectrum-css/bundle@1.0.1
11+
312
## 12.0.3
413

514
### Patch Changes

.storybook/main.js

+14-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
import fs from "fs";
2-
import path from "path";
3-
import remarkGfm from "remark-gfm";
1+
import fs from "node:fs";
2+
import path from "node:path";
3+
import remarkGfm from 'remark-gfm';
44

55
// Get a list of all the folders in the components directory
66
const componentDir = path.resolve(__dirname, "../components");
@@ -109,7 +109,17 @@ export default {
109109
devSourcemap: configType === "DEVELOPMENT",
110110
},
111111
resolve: {
112-
alias: components.map(component => ({ find: `@spectrum-css/${component}`, replacement: path.resolve(__dirname, `../components/${component}`) })),
112+
alias: [
113+
...components.map(component => ({ find: `@spectrum-css/${component}`, replacement: path.resolve(__dirname, `../components/${component}`) })),
114+
{
115+
find: `@spectrum-css/tokens`,
116+
replacement: path.resolve(__dirname, `../tokens`),
117+
},
118+
{
119+
find: `@spectrum-css/ui-icons`,
120+
replacement: path.resolve(__dirname, `../ui-icons`),
121+
},
122+
],
113123
}
114124
});
115125
},

.storybook/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@spectrum-css/preview",
3-
"version": "12.0.3",
3+
"version": "12.0.4",
44
"description": "A Spectrum CSS preview",
55
"license": "Apache-2.0",
66
"author": "Adobe",
@@ -40,7 +40,7 @@
4040
},
4141
"dependencies": {
4242
"@adobe/spectrum-css-workflow-icons": "^4.0.0",
43-
"@spectrum-css/bundle": "1.0.0",
43+
"@spectrum-css/bundle": "1.0.1",
4444
"@spectrum-css/tokens": "16.0.1",
4545
"@spectrum-css/ui-icons": "2.0.0-next.0"
4646
},
@@ -69,7 +69,7 @@
6969
"lodash-es": "^4.17.21",
7070
"npm-registry-fetch": "^18.0.2",
7171
"postcss": "^8.5.3",
72-
"prettier": "^3.4.2",
72+
"prettier": "^3.5.3",
7373
"react": "^18.3.1",
7474
"react-dom": "^18.3.1",
7575
"react-syntax-highlighter": "^15.6.1",

.storybook/postcss.config.js

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
/*!
2+
* Copyright 2024 Adobe. All rights reserved.
3+
*
4+
* This file is licensed to you under the Apache License, Version 2.0 (the "License");
5+
* you may not use this file except in compliance with the License. You may obtain a copy
6+
* of the License at http://www.apache.org/licenses/LICENSE-2.0
7+
*
8+
* Unless required by applicable law or agreed to in writing, software distributed under
9+
* the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS
10+
* OF ANY KIND, either express or implied. See the License for the specific language
11+
* governing permissions and limitations under the License.
12+
*/
13+
14+
module.exports = (options) => require("../postcss.config.js")({
15+
...options,
16+
resolveImports: false,
17+
env: "production",
18+
map: false,
19+
lint: false,
20+
additionalPlugins: {
21+
"@csstools/postcss-bundler": {},
22+
},
23+
});

components/alertbanner/CHANGELOG.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,9 @@
2020

2121
### Patch Changes
2222

23-
- [#3624](https://github.com/adobe/spectrum-css/pull/3624) [`754f99a`](https://github.com/adobe/spectrum-css/commit/754f99afc3c1918cdc0d173150989bcc1e6a7d2f) Thanks [@marissahuysentruyt](https://github.com/marissahuysentruyt)! - In the alert banner spectrum.css (the S1 stylesheet), --system: legacy was corrected in the container query.
23+
📝 [#3624](https://github.com/adobe/spectrum-css/pull/3624) [`754f99a`](https://github.com/adobe/spectrum-css/commit/754f99afc3c1918cdc0d173150989bcc1e6a7d2f) Thanks [@marissahuysentruyt](https://github.com/marissahuysentruyt)!
24+
25+
In the alert banner `spectrum.css` (the S1 stylesheet), `--system: legacy` was corrected in the container query.
2426

2527
## 3.1.0
2628

components/assetlist/CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,14 @@
88
- @spectrum-css/icon@10.0.0-next.0
99
- @spectrum-css/checkbox@11.0.0-next.0
1010

11+
## 8.2.0
12+
13+
### Minor Changes
14+
15+
📝 [#3527](https://github.com/adobe/spectrum-css/pull/3527) [`5f1751c`](https://github.com/adobe/spectrum-css/commit/5f1751c82a5fe55ae0d999f5f50cfeca4c8a5c75) Thanks [@castastrophe](https://github.com/castastrophe)!
16+
17+
By updating the postcss-preset-env to the latest breaking change version, output for this component no longer injects the `.js-focus-within` and '[focus-within]` selectors for the focus-within polyfill. As this feature is not used in the SWC consumption, risk to the end user for this removal is low.
18+
1119
## 8.1.0
1220

1321
### Minor Changes

components/assetlist/dist/metadata.json

-8
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,12 @@
11
{
22
"sourceFile": "index.css",
33
"selectors": [
4-
".js-focus-within .spectrum-AssetList-item.is-focused[focus-within]",
5-
".js-focus-within .spectrum-AssetList-item.is-focused[focus-within]:before",
6-
".js-focus-within .spectrum-AssetList-item[focus-within]:focus-visible",
7-
".js-focus-within .spectrum-AssetList-item[focus-within]:focus-visible:before",
84
".spectrum-AssetList",
95
".spectrum-AssetList-item",
106
".spectrum-AssetList-item .spectrum-AssetList-itemThumbnail",
117
".spectrum-AssetList-item.is-branch .spectrum-AssetList-itemChildIndicator",
128
".spectrum-AssetList-item.is-focused:focus-within",
139
".spectrum-AssetList-item.is-focused:focus-within:before",
14-
".spectrum-AssetList-item.is-focused[focus-within].js-focus-within",
15-
".spectrum-AssetList-item.is-focused[focus-within].js-focus-within:before",
1610
".spectrum-AssetList-item.is-navigated",
1711
".spectrum-AssetList-item.is-navigated:focus",
1812
".spectrum-AssetList-item.is-navigated:hover",
@@ -30,8 +24,6 @@
3024
".spectrum-AssetList-itemChildIndicator",
3125
".spectrum-AssetList-itemLabel",
3226
".spectrum-AssetList-itemSelector",
33-
".spectrum-AssetList-item[focus-within]:focus-visible.js-focus-within",
34-
".spectrum-AssetList-item[focus-within]:focus-visible.js-focus-within:before",
3527
".spectrum-AssetList:dir(rtl)",
3628
"[dir=\"rtl\"] .spectrum-AssetList"
3729
],

components/clearbutton/CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,14 @@
77
- Updated dependencies [[`a25e0a9`](https://github.com/adobe/spectrum-css/commit/a25e0a99e5a4736ab4e607e00739343101a2633b)]:
88
- @spectrum-css/icon@10.0.0-next.0
99

10+
## 7.2.0
11+
12+
### Minor Changes
13+
14+
📝 [#3527](https://github.com/adobe/spectrum-css/pull/3527) [`5f1751c`](https://github.com/adobe/spectrum-css/commit/5f1751c82a5fe55ae0d999f5f50cfeca4c8a5c75) Thanks [@castastrophe](https://github.com/castastrophe)!
15+
16+
By updating the postcss-preset-env to the latest breaking change version, output for this component no longer injects the `.js-focus-within` and '[focus-within]` selectors for the focus-within polyfill. As this feature is not used in the SWC consumption, risk to the end user for this removal is low.
17+
1018
## 7.1.0
1119

1220
### Minor Changes

components/clearbutton/dist/metadata.json

+1-5
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
{
22
"sourceFile": "index.css",
33
"selectors": [
4-
".js-focus-within .spectrum-ClearButton:not(:disabled)[focus-within]",
5-
".js-focus-within .spectrum-ClearButton:not(:disabled)[focus-within] .spectrum-ClearButton-fill",
64
".spectrum-ClearButton",
75
".spectrum-ClearButton > .spectrum-Icon",
86
".spectrum-ClearButton--overBackground:focus-visible",
@@ -24,9 +22,7 @@
2422
".spectrum-ClearButton:not(:disabled):focus-within",
2523
".spectrum-ClearButton:not(:disabled):focus-within .spectrum-ClearButton-fill",
2624
".spectrum-ClearButton:not(:disabled):hover",
27-
".spectrum-ClearButton:not(:disabled):hover .spectrum-ClearButton-fill",
28-
".spectrum-ClearButton:not(:disabled)[focus-within].js-focus-within",
29-
".spectrum-ClearButton:not(:disabled)[focus-within].js-focus-within .spectrum-ClearButton-fill"
25+
".spectrum-ClearButton:not(:disabled):hover .spectrum-ClearButton-fill"
3026
],
3127
"modifiers": [
3228
"--mod-clear-button-background-color",

components/combobox/CHANGELOG.md

+7-5
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
### Patch Changes
66

7-
- Updated dependencies []:
7+
- Updated dependencies:
88
- @spectrum-css/menu@10.0.0-next.0
99
- @spectrum-css/pickerbutton@7.0.0-next.0
1010
- @spectrum-css/popover@9.0.0-next.0
@@ -14,11 +14,13 @@
1414

1515
### Patch Changes
1616

17-
- [#3609](https://github.com/adobe/spectrum-css/pull/3609) [`851be13`](https://github.com/adobe/spectrum-css/commit/851be13295f9d42d548894fee6626009f053de61) Thanks [@marissahuysentruyt](https://github.com/marissahuysentruyt)! - Fast follow fixes for combobox
17+
📝 [#3609](https://github.com/adobe/spectrum-css/pull/3609) [`851be13`](https://github.com/adobe/spectrum-css/commit/851be13295f9d42d548894fee6626009f053de61) Thanks [@marissahuysentruyt](https://github.com/marissahuysentruyt)!
1818

19-
- corrects container query for the `--system` reference to "legacy" in the combobox/themes/spectrum.css file
20-
- corrects the border colors for several combobox states including focus, keyboardFocus, focus+hover, disabled, read-only for all themes
21-
- adds `--spectrum-combobox-readonly-input-border-color: var(--spectrum-gray-400);` to express.css theme so that the default border and read-only border colors are the same
19+
#### Fast follow fixes for combobox
20+
21+
- corrects container query for the `--system` reference to "legacy" in the combobox/themes/spectrum.css file
22+
- corrects the border colors for several combobox states including focus, keyboardFocus, focus+hover, disabled, read-only for all themes
23+
- adds `--spectrum-combobox-readonly-input-border-color: var(--spectrum-gray-400);` to express.css theme so that the default border and read-only border colors are the same
2224

2325
## 4.1.1
2426

components/dial/CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# Change log
22

3+
## 5.2.0
4+
5+
### Minor Changes
6+
7+
📝 [#3527](https://github.com/adobe/spectrum-css/pull/3527) [`5f1751c`](https://github.com/adobe/spectrum-css/commit/5f1751c82a5fe55ae0d999f5f50cfeca4c8a5c75) Thanks [@castastrophe](https://github.com/castastrophe)!
8+
9+
By updating the postcss-preset-env to the latest breaking change version, output for this component no longer injects the `.js-focus-within` and '[focus-within]` selectors for the focus-within polyfill. As this feature is not used in the SWC consumption, risk to the end user for this removal is low.
10+
311
## 5.1.0
412

513
### Minor Changes

components/dial/dist/metadata.json

-4
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
{
22
"sourceFile": "index.css",
33
"selectors": [
4-
".js-focus-within .spectrum-Dial-handle[focus-within]",
5-
".js-focus-within .spectrum-Dial-handle[focus-within]:after",
64
".spectrum-Dial",
75
".spectrum-Dial-controls",
86
".spectrum-Dial-controls:after",
@@ -20,8 +18,6 @@
2018
".spectrum-Dial-handle:focus-within:after",
2119
".spectrum-Dial-handle:hover",
2220
".spectrum-Dial-handle:hover:after",
23-
".spectrum-Dial-handle[focus-within].js-focus-within",
24-
".spectrum-Dial-handle[focus-within].js-focus-within:after",
2521
".spectrum-Dial-input",
2622
".spectrum-Dial-input:focus",
2723
".spectrum-Dial-label",

components/dial/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@spectrum-css/dial",
3-
"version": "5.1.0",
3+
"version": "5.2.0",
44
"description": "The Spectrum CSS dial component",
55
"license": "Apache-2.0",
66
"author": "Adobe",

components/menu/CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,14 @@ Minified and gzipped outputs available for all compiled CSS assets.
4242
- @spectrum-css/tray@6.0.0
4343
- @spectrum-css/tokens@16.0.1
4444

45+
## 9.2.0
46+
47+
### Minor Changes
48+
49+
📝 [#3527](https://github.com/adobe/spectrum-css/pull/3527) [`5f1751c`](https://github.com/adobe/spectrum-css/commit/5f1751c82a5fe55ae0d999f5f50cfeca4c8a5c75) Thanks [@castastrophe](https://github.com/castastrophe)!
50+
51+
By updating the postcss-preset-env to the latest breaking change version, output for this component no longer injects the `.js-focus-within` and '[focus-within]` selectors for the focus-within polyfill. As this feature is not used in the SWC consumption, risk to the end user for this removal is low.
52+
4553
## 9.1.1
4654

4755
### Patch Changes

components/menu/dist/metadata.json

-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
{
22
"sourceFile": "index.css",
33
"selectors": [
4-
".js-focus-within .spectrum-Menu .spectrum-Menu-item--collapsible.is-open[focus-within]",
54
".spectrum-Menu",
65
".spectrum-Menu .spectrum-Menu-backIcon",
76
".spectrum-Menu .spectrum-Menu-checkmark",
@@ -129,7 +128,6 @@
129128
".spectrum-Menu.is-selectable .spectrum-Menu-item.is-selected",
130129
".spectrum-Menu.is-selectableMultiple .spectrum-Menu-item",
131130
".spectrum-Menu.is-selectableMultiple .spectrum-Menu-itemCheckbox",
132-
".spectrum-Menu.js-focus-within .spectrum-Menu-item--collapsible.is-open[focus-within]",
133131
".spectrum-Menu.spectrum-Menu--sizeL",
134132
".spectrum-Menu.spectrum-Menu--sizeS",
135133
".spectrum-Menu.spectrum-Menu--sizeXL",

components/search/dist/metadata.json

-3
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,6 @@
2525
".spectrum-Search-textfield.is-keyboardFocused .spectrum-Search-icon",
2626
".spectrum-Search-textfield:hover .spectrum-Search-icon",
2727
".spectrum-Search.is-disabled .spectrum-Search-clearButton",
28-
".spectrum-Search.spectrum-Search--sizeL",
29-
".spectrum-Search.spectrum-Search--sizeS",
30-
".spectrum-Search.spectrum-Search--sizeXL",
3128
".spectrum-Search:not(.spectrum-Search--quiet) .spectrum-Search-icon",
3229
".spectrum-Search:not(.spectrum-Search--quiet) .spectrum-Search-input"
3330
],

components/search/index.css

-24
Original file line numberDiff line numberDiff line change
@@ -12,32 +12,8 @@
1212
*/
1313

1414
.spectrum-Search {
15-
--spectrum-search-border-color-default: var(--spectrum-gray-500);
16-
--spectrum-search-border-color-hover: var(--spectrum-gray-600);
17-
--spectrum-search-border-color-focus: var(--spectrum-gray-800);
18-
--spectrum-search-border-color-focus-hover: var(--spectrum-gray-900);
19-
--spectrum-search-border-color-key-focus: var(--spectrum-gray-900);
20-
2115
--spectrum-search-background-color: var(--spectrum-gray-25);
2216

23-
--spectrum-search-border-radius: var(--spectrum-corner-radius-100);
24-
--spectrum-search-edge-to-visual: var(--spectrum-component-edge-to-visual-100);
25-
26-
&.spectrum-Search--sizeS {
27-
--spectrum-search-border-radius: var(--spectrum-corner-radius-100);
28-
--spectrum-search-edge-to-visual: var(--spectrum-component-edge-to-visual-75);
29-
}
30-
31-
&.spectrum-Search--sizeL {
32-
--spectrum-search-border-radius: var(--spectrum-corner-radius-100);
33-
--spectrum-search-edge-to-visual: var(--spectrum-component-edge-to-visual-200);
34-
}
35-
36-
&.spectrum-Search--sizeXL {
37-
--spectrum-search-border-radius: var(--spectrum-corner-radius-100);
38-
--spectrum-search-edge-to-visual: var(--spectrum-component-edge-to-visual-300);
39-
}
40-
4117
/* Size / Spacing */
4218
--spectrum-search-inline-size: var(--spectrum-field-width);
4319
--spectrum-search-block-size: var(--spectrum-component-height-100);

components/slider/CHANGELOG.md

+14-4
Original file line numberDiff line numberDiff line change
@@ -4,18 +4,28 @@
44

55
### Patch Changes
66

7-
- Updated dependencies []:
7+
- Updated dependencies:
88
- @spectrum-css/stepper@8.0.0-next.0
99

10+
## 6.3.0
11+
12+
### Minor Changes
13+
14+
📝 [#3527](https://github.com/adobe/spectrum-css/pull/3527) [`5f1751c`](https://github.com/adobe/spectrum-css/commit/5f1751c82a5fe55ae0d999f5f50cfeca4c8a5c75) Thanks [@castastrophe](https://github.com/castastrophe)!
15+
16+
By updating the postcss-preset-env to the latest breaking change version, output for this component no longer injects the `.js-focus-within` and '[focus-within]` selectors for the focus-within polyfill. As this feature is not used in the SWC consumption, risk to the end user for this removal is low.
17+
1018
## 6.2.0
1119

1220
### Minor Changes
1321

14-
- [#3611](https://github.com/adobe/spectrum-css/pull/3611) [`8cb98c6`](https://github.com/adobe/spectrum-css/commit/8cb98c6127a91f902f305faeb800e3c787e97e66) Thanks [@aramos-adobe](https://github.com/aramos-adobe)! - # Slider: offset variant track fix
22+
📝 [#3611](https://github.com/adobe/spectrum-css/pull/3611) [`8cb98c6`](https://github.com/adobe/spectrum-css/commit/8cb98c6127a91f902f305faeb800e3c787e97e66) Thanks [@aramos-adobe](https://github.com/aramos-adobe)!
23+
24+
#### Slider: offset variant track fix
1525

16-
The border radius styles were not being applied to the second instance of the `spectrum-Slider-track` when the offset variant is activated. The reason for this bug is because when the `offset` is selected, the template structure changes as `spectrum-Slider-fill` gets added to the slider.
26+
The border radius styles were not being applied to the second instance of the `spectrum-Slider-track` when the offset variant is activated. The reason for this bug is because when the `offset` is selected, the template structure changes as `spectrum-Slider-fill` gets added to the slider.
1727

18-
Adding a sibling combinator `&~.spectrum-Slider-track` to `spectrum-Slider-track` when offset is activated resolved the issue.
28+
Adding a sibling combinator `&~.spectrum-Slider-track` to `spectrum-Slider-track` when offset is activated resolved the issue.
1929

2030
## 6.1.0
2131

components/slider/dist/metadata.json

-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
{
22
"sourceFile": "index.css",
33
"selectors": [
4-
".js-focus-within .spectrum-Slider:not(.is-disabled, .spectrum-Slider--filled, .spectrum-Slider--range) .spectrum-Slider-controls[focus-within]",
54
".spectrum-Slider",
65
".spectrum-Slider .spectrum-Slider-handle.is-focused:before",
76
".spectrum-Slider--filled .spectrum-Slider-track:first-child:before",
@@ -90,7 +89,6 @@
9089
".spectrum-Slider:not(.is-disabled, .spectrum-Slider--filled, .spectrum-Slider--range) .spectrum-Slider-controls:active",
9190
".spectrum-Slider:not(.is-disabled, .spectrum-Slider--filled, .spectrum-Slider--range) .spectrum-Slider-controls:focus-within",
9291
".spectrum-Slider:not(.is-disabled, .spectrum-Slider--filled, .spectrum-Slider--range) .spectrum-Slider-controls:hover",
93-
".spectrum-Slider:not(.is-disabled, .spectrum-Slider--filled, .spectrum-Slider--range).js-focus-within .spectrum-Slider-controls[focus-within]",
9492
".spectrum-Slider:not(.spectrum-Slider--sideLabel) .spectrum-Slider-labelContainer + .spectrum-Slider-controls:has(.spectrum-Slider-ramp)",
9593
"[dir=\"rtl\"] .spectrum-Slider",
9694
"[dir=\"rtl\"] .spectrum-Slider .spectrum-Slider-handle:before"

components/stepper/CHANGELOG.md

+4-2
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,10 @@
1414

1515
### Patch Changes
1616

17-
- [#3621](https://github.com/adobe/spectrum-css/pull/3621) [`3aec28a`](https://github.com/adobe/spectrum-css/commit/3aec28aac60bdf32a585fa8ff38559d80b57ff86) Thanks [@marissahuysentruyt](https://github.com/marissahuysentruyt)! - - Updates `--spectrum-stepper-border-color-focus-hover` from `gray-800` to `gray-900`.
18-
- Updates `--spectrum-stepper-buttons-border-color-keyboard-focus` from `gray-900` to `gray-800` to match the rest of the border color on keyboardFocus.
17+
📝 [#3621](https://github.com/adobe/spectrum-css/pull/3621) [`3aec28a`](https://github.com/adobe/spectrum-css/commit/3aec28aac60bdf32a585fa8ff38559d80b57ff86) Thanks [@marissahuysentruyt](https://github.com/marissahuysentruyt)!
18+
19+
- Updates `--spectrum-stepper-border-color-focus-hover` from `gray-800` to `gray-900`.
20+
- Updates `--spectrum-stepper-buttons-border-color-keyboard-focus` from `gray-900` to `gray-800` to match the rest of the border color on keyboardFocus.
1921

2022
## 7.1.2
2123

nx.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@
102102
},
103103
"compare": {
104104
"cache": true,
105-
"dependsOn": ["build"],
105+
"dependsOn": [{ "projects": "bundle", "target": "build" }],
106106
"executor": "nx:run-commands",
107107
"inputs": [
108108
"{workspaceRoot}/tasks/compare-compiled-output.js",

0 commit comments

Comments
 (0)