Skip to content

Commit

Permalink
Merge pull request #53 from Fullscript/npm-to-yarn
Browse files Browse the repository at this point in the history
fix: update package commands to use yarn instead of npm
  • Loading branch information
alexandra-lim authored Aug 8, 2022
2 parents edadc51 + 91f2712 commit 4e5da9c
Show file tree
Hide file tree
Showing 14 changed files with 111 additions and 522 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build-tokens.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,11 @@ jobs:
with:
node-version: "14"
- name: Install Node Dependencies
run: npm install
run: yarn install
- name: Pull any branch changes
run: git pull origin ${{ github.head_ref }}
- name: Run token transformer
run: npm run transform
run: yarn run transform
- name: Commit transformed tokens
uses: stefanzweifel/git-auto-commit-action@v4
with:
Expand All @@ -42,11 +42,11 @@ jobs:
with:
node-version: "14"
- name: Install Node Dependencies
run: npm install
run: yarn install
- name: Pull transformed tokens changes
run: git pull origin ${{ github.head_ref }}
- name: Run style dictionary build
run: npm run build
run: yarn run build
- name: Commit built tokens
uses: stefanzweifel/git-auto-commit-action@v4
with:
Expand Down
2 changes: 1 addition & 1 deletion build/native/colors.d.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/**
* Do not edit directly
* Generated on Mon, 08 Aug 2022 13:59:12 GMT
* Generated on Mon, 08 Aug 2022 15:26:33 GMT
*/

export const green100 : string;
Expand Down
2 changes: 1 addition & 1 deletion build/native/colors.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/**
* Do not edit directly
* Generated on Mon, 08 Aug 2022 13:59:12 GMT
* Generated on Mon, 08 Aug 2022 15:26:33 GMT
*/

module.exports = {
Expand Down
2 changes: 1 addition & 1 deletion build/native/typography.d.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/**
* Do not edit directly
* Generated on Mon, 08 Aug 2022 13:59:12 GMT
* Generated on Mon, 08 Aug 2022 15:26:33 GMT
*/

export const letterSpacingBase : number;
Expand Down
2 changes: 1 addition & 1 deletion build/native/typography.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/**
* Do not edit directly
* Generated on Mon, 08 Aug 2022 13:59:12 GMT
* Generated on Mon, 08 Aug 2022 15:26:33 GMT
*/

module.exports = {
Expand Down
2 changes: 1 addition & 1 deletion build/scss/colors.scss
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@

// Do not edit directly
// Generated on Mon, 08 Aug 2022 13:59:12 GMT
// Generated on Mon, 08 Aug 2022 15:26:33 GMT

$green100: #FAFFFC;
$green200: #EBF2EF;
Expand Down
2 changes: 1 addition & 1 deletion build/scss/typography.scss
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@

// Do not edit directly
// Generated on Mon, 08 Aug 2022 13:59:12 GMT
// Generated on Mon, 08 Aug 2022 15:26:33 GMT

$letterSpacingBase: 0;
$paragraphSpacingBase: 0;
Expand Down
2 changes: 1 addition & 1 deletion build/ts/colors.d.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/**
* Do not edit directly
* Generated on Mon, 08 Aug 2022 13:59:12 GMT
* Generated on Mon, 08 Aug 2022 15:26:33 GMT
*/

export const green100 : string;
Expand Down
2 changes: 1 addition & 1 deletion build/ts/colors.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/**
* Do not edit directly
* Generated on Mon, 08 Aug 2022 13:59:12 GMT
* Generated on Mon, 08 Aug 2022 15:26:33 GMT
*/

module.exports = {
Expand Down
2 changes: 1 addition & 1 deletion build/ts/typography.d.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/**
* Do not edit directly
* Generated on Mon, 08 Aug 2022 13:59:12 GMT
* Generated on Mon, 08 Aug 2022 15:26:33 GMT
*/

export const letterSpacingBase : number;
Expand Down
2 changes: 1 addition & 1 deletion build/ts/typography.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/**
* Do not edit directly
* Generated on Mon, 08 Aug 2022 13:59:12 GMT
* Generated on Mon, 08 Aug 2022 15:26:33 GMT
*/

module.exports = {
Expand Down
Loading

0 comments on commit 4e5da9c

Please sign in to comment.