Skip to content

Commit

Permalink
Force [email protected] to temporarily work around bug in library (#495)
Browse files Browse the repository at this point in the history
* Force [email protected] to temporarily work around bug in library

* Update changelog

* Add helper scripts for running npm link and rebuilt package-lock

* Revert updated package-lock.json in root to bypass pixel shifting backstop tests
  • Loading branch information
jameswburke authored Apr 5, 2022
1 parent b62dc41 commit 29581ed
Show file tree
Hide file tree
Showing 5 changed files with 391 additions and 238 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
* larva-patterns - Add `article-callout` module.
* larva-patterns - Update `c-email-field` component and 'newsletter' module to improve label and input accessibility.
* all - Add github action on workflow-dispatch to update the visual regression tests in the same environment in which they are run

* larva - Lock the twing package to version 5.1.0 to temporarily work around bug in library.

## 0.5.6 - 03-29-2022
* larva-tokens - Add desktop_xl token values in typography.json
Expand Down
1 change: 1 addition & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 6 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,12 @@
"sync-tokens": "mkdir -p build/tokens && cp -r packages/larva-tokens/build/ build/tokens/",
"sync-public": "mkdir -p packages/larva/public && cp -r public packages/larva",
"sync-built-js": "mkdir -p build/js/standalone && rm -r build/js/standalone && cp -r packages/larva-js/build build/js/standalone",
"sync-build": "npm run sync-public && npm run sync-tokens && npm run sync-built-js && mkdir -p packages/larva/build && rm -r packages/larva/build && cp -r build/ packages/larva/build"
"sync-build": "npm run sync-public && npm run sync-tokens && npm run sync-built-js && mkdir -p packages/larva/build && rm -r packages/larva/build && cp -r build/ packages/larva/build",
"link-all": "npm run prod && npm run link-larva && npm run link-patterns && npm run link-css && npm run link-js",
"link-larva": "cd packages/larva && npm link",
"link-patterns": "cd packages/larva-patterns && npm link",
"link-css": "cd packages/larva-css && npm link",
"link-js": "cd packages/larva-js && npm link"
},
"bin": {
"larva": "packages/larva/bin/larva.js"
Expand Down
Loading

1 comment on commit 29581ed

@vercel
Copy link

@vercel vercel bot commented on 29581ed Apr 5, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.