Skip to content

Commit

Permalink
rm build for v1
Browse files Browse the repository at this point in the history
  • Loading branch information
lukasoppermann committed Apr 9, 2024
1 parent 956b1a1 commit eabf048
Show file tree
Hide file tree
Showing 38 changed files with 12 additions and 3,297 deletions.
5 changes: 5 additions & 0 deletions .changeset/four-bulldogs-search.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'@primer/primitives': major
---

remove v1 tokens and build process
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,6 @@ jobs:
with:
node_version: 18
install: npm ci --legacy-peer-deps --no-audit --no-fund && npm run install:storybook
build: npm run build:tokens && npm run build && npm run build:next && cd docs/storybook && npm run build:prod
build: npm run build:tokens && npm run build:next && cd docs/storybook && npm run build:prod
output_dir: docs/public

2 changes: 1 addition & 1 deletion .github/workflows/deploy_preview.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
with:
node_version: 18
install: npm ci --no-audit --no-fund --ignore-scripts && npm run install:storybook
build: npm run build:tokens && npm run build && npm run build:next && cd docs/storybook && npm run build:preview
build: npm run build:tokens && npm run build:next && cd docs/storybook && npm run build:preview
output_dir: docs/public

post_storybook:
Expand Down
6 changes: 0 additions & 6 deletions .github/workflows/diff.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,18 +66,12 @@ jobs:
- name: Install dependencies
run: npm ci --no-audit --no-fund --include=dev --ignore-scripts

- name: Build tokens
run: npm run build

- name: Build experimental tokens
run: npm run build:tokens

- name: Install dependencies (base)
run: pushd base; npm i --no-audit --no-fund --ignore-scripts; popd

- name: Build (base)
run: pushd base; npm run build; popd

- name: Build (base experimental)
run: pushd base; npm run build:tokens; popd

Expand Down
13 changes: 2 additions & 11 deletions .github/workflows/hasChanged.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,10 @@ on:
outputs:
outputAffected:
description: "Boolean value indicating changes in any file or folder that has an effect on the output"
value: ${{ jobs.hasChanged.outputs.oldTokens || jobs.hasChanged.outputs.src || jobs.hasChanged.outputs.buildScripts }}
value: ${{ jobs.hasChanged.outputs.src || jobs.hasChanged.outputs.buildScripts }}
tokens:
description: "Boolean value indicating change in src/tokens folder"
value: ${{ jobs.hasChanged.outputs.tokens }}
oldTokens:
description: "Boolean value indicating change in data folder"
value: ${{ jobs.hasChanged.outputs.oldTokens }}
src:
description: "Boolean value indicating change in src folder"
value: ${{ jobs.hasChanged.outputs.src }}
Expand All @@ -37,7 +34,6 @@ jobs:
outputs:
outputAffected: ${{ steps.filter.outputs.outputAffected }}
tokens: ${{ steps.filter.outputs.tokens }}
oldTokens: ${{ steps.filter.outputs.oldTokens }}
src: ${{ steps.filter.outputs.src }}
scripts: ${{ steps.filter.outputs.scripts }}
buildScripts: ${{ steps.filter.outputs.buildScripts }}
Expand All @@ -52,32 +48,27 @@ jobs:
filters: |
tokens:
- 'src/tokens/**'
oldTokens:
- 'data/**'
src:
- 'src/**/**.ts'
- 'src/**/**.json'
- 'src/**/**.json5'
scripts:
- 'scripts/**'
buildScripts:
- 'scripts/build.ts'
- 'scripts/buildTokens.ts'
- 'scripts/themes.config.ts'
- 'tsconfig.json'
- 'tsconfig.build.json'
- 'package.json'
dependencies:
- 'package.json'
- 'package-lock.json'
docs:
- 'docs/**'
- name: Detecting changes that effect output
if: steps.filter.outputs.tokens == 'true' || steps.filter.outputs.oldTokens == 'true' || steps.filter.outputs.src == 'true' || steps.filter.outputs.scripts == 'true' || steps.filter.outputs.dependencies == 'true' || steps.filter.outputs.docs == 'true'
if: steps.filter.outputs.tokens == 'true' || steps.filter.outputs.src == 'true' || steps.filter.outputs.scripts == 'true' || steps.filter.outputs.dependencies == 'true' || steps.filter.outputs.docs == 'true'
run: |
echo Changes detected
echo - tokens: ${{ steps.filter.outputs.tokens }}
echo - oldTokens: ${{ steps.filter.outputs.oldTokens }}
echo - src: ${{ steps.filter.outputs.src }}
echo - scripts: ${{ steps.filter.outputs.scripts }}
echo - buildScripts: ${{ steps.filter.outputs.buildScripts }}
Expand Down
7 changes: 0 additions & 7 deletions data/colors/deprecated.json

This file was deleted.

21 changes: 0 additions & 21 deletions data/colors/index.ts

This file was deleted.

1 change: 0 additions & 1 deletion data/colors/prefix

This file was deleted.

Loading

0 comments on commit eabf048

Please sign in to comment.