Skip to content

Commit cb49ab7

Browse files
committed
chore: remove outdated generator
1 parent a03b7e6 commit cb49ab7

25 files changed

+31
-1251
lines changed

.github/workflows/development.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ jobs:
115115
- components/*/*.md
116116
- plugins/*/*.md
117117
- tokens/*.md
118-
- tools/*/*.md
118+
- bundle/*.md
119119
- ui-icons/*.md
120120
plugins:
121121
- plugins/**/*

.github/workflows/vrt.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ jobs:
9393
exitOnceUploaded: true
9494
onlyChanged: true
9595
traceChanged: true
96-
untraced: ".github/* plugins/stylelint-*/* tools/* .changeset/*"
96+
untraced: ".github/* plugins/stylelint-*/* bundle/* .changeset/*"
9797
autoAcceptChanges: "(main|spectrum-two)"
9898
# Lets VRT pass without running so as not to waste snapshots
9999
skip: ${{ inputs.skip }}

.stylelintignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ generator
66
dist
77
.storybook/storybook-static
88
*-generated.css
9-
tools/bundle/src/*.css
9+
bundle/src/*.css
1010

1111
node_modules/**/*.css
1212

File renamed without changes.
File renamed without changes.

tools/bundle/package.json renamed to bundle/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
"repository": {
1515
"type": "git",
1616
"url": "https://github.com/adobe/spectrum-css.git",
17-
"directory": "tools/bundle"
17+
"directory": "bundle"
1818
},
1919
"bugs": {
2020
"url": "https://github.com/adobe/spectrum-css/issues"

tools/bundle/postcss.config.js renamed to bundle/postcss.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
* governing permissions and limitations under the License.
1212
*/
1313

14-
import { dirs } from "../../tasks/utilities.js";
14+
import { dirs } from "../tasks/utilities.js";
1515

1616
/**
1717
* This config is used only to process the source files when created;
File renamed without changes.
File renamed without changes.

tools/bundle/tasks/bundler.js renamed to bundle/tasks/bundler.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,12 @@
1515
import fs from "node:fs";
1616
import path from "node:path";
1717

18-
import { processCSS } from "../../../tasks/component-builder.js";
19-
import { dirs } from "../../../tasks/utilities.js";
18+
import { processCSS } from "../../tasks/component-builder.js";
19+
import { dirs } from "../../tasks/utilities.js";
2020

2121
import "colors";
2222

23-
const bundleRoot = path.resolve(dirs.root, "tools", "bundle");
23+
const bundleRoot = path.resolve(dirs.root, "bundle");
2424

2525
/**
2626
* Bundle all the components into a single CSS file

0 commit comments

Comments
 (0)