-
Notifications
You must be signed in to change notification settings - Fork 12
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add semantic-release and update build #490
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
"platforms": { | ||
"css": { | ||
"transformGroup": "css", | ||
"buildPath": "src/tokens/", | ||
"buildPath": "dist/", | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This would publish all of our CSS in this directory as well, correct? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Our |
||
"files": [ | ||
{ | ||
"destination": "_variables.css", | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,10 @@ | ||
{ | ||
"name": "@department-of-veterans-affairs/css-library", | ||
"private": true, | ||
"description": "VA.gov CSS library", | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. We may also want to include Design System in there. |
||
"version": "1.0.0", | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Can we publish it as |
||
"packageManager": "[email protected]", | ||
"files": [ | ||
"dist/*.css" | ||
"dist/*" | ||
], | ||
"scripts": { | ||
"build:tokens": "style-dictionary build", | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
If we run
yarn semantic-release
, what will happen?