-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: added prepping and finalizing scripts for versioning when deplo…
…ying
- Loading branch information
Showing
5 changed files
with
37 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,28 @@ | ||
# Your Shared UI | ||
|
||
Tell us the purpose of the shared UI and how to consume it and any other notes | ||
Tell us the purpose of the shared UI and how to consume it and any other notes | ||
|
||
## You're almost set to go | ||
|
||
You'll need to run `yarn add husky` to get conventional commits to work correctly | ||
|
||
For jest you will need to add this to your package.json | ||
|
||
``` | ||
"jest": { | ||
"collectCoverageFrom": [ | ||
"src/**/*.ts", | ||
"src/**/*.tsx", | ||
"!src/**/*.stories.tsx", | ||
"!src/**/index.ts", | ||
"!src/**/index.tsx", | ||
"!src/**/*.d.ts" | ||
], | ||
"transformIgnorePatterns": [ | ||
"./node_modules/(?!(@mbkit/*)/)" | ||
], | ||
"moduleNameMapper": { | ||
"\\.(css|less|scss|sass)$": "identity-obj-proxy" | ||
} | ||
} | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,4 +13,4 @@ RUN yarn install --pure-lockfile | |
RUN yarn test:ci | ||
|
||
# Build packages | ||
RUN yarn build:ci | ||
RUN yarn build:shared-ui |