-
Notifications
You must be signed in to change notification settings - Fork 36
fix(deps): update dependencies to solve medium vulnerabilities #105
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
Open
TakahashiNguyen
wants to merge
26
commits into
SoftwareBrothers:master
Choose a base branch
from
524H0003:master
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+2,428
−1,964
Open
Changes from all commits
Commits
Show all changes
26 commits
Select commit
Hold shift + click to select a range
d5dff4a
Create build.yml
aac9929
Update build.yml
1b7d400
build(deps): update package.json and yarn.lock
14ace92
ci: update build.yml
680e231
chore: delete build.yml
e25054b
build(deps): update package.json and yarn.lock
eabdf9a
update 6 files
eed6c8d
build: update package.json
53b5040
build(deps): update package.json, combine-styles.ts and yarn.lock
99d6c88
update avatar.stories.tsx
a90e4b4
build(deps): update package.json and yarn.lock
bf129fb
build(deps): update package.json, date-picker.stories.tsx and yarn.lock
1ce8959
build(deps): update package.json and yarn.lock
3bf79aa
build(deps): update main.mjs, package.json, tsconfig.json and yarn.lock
c71888a
build(deps): update package.json and yarn.lock
42983cf
update main.mjs and preview.mjs
972c9ca
build(deps): update main.mjs and yarn.lock
dc7a862
ci: update push.yml
325c00c
update main.mjs
d6297e2
build(deps): update package.json and yarn.lock
563e1fd
build: update package.json
1b68f1f
build(deps): update avatar.stories.tsx and yarn.lock
4d737b4
update combine-styles.ts
60c54f1
dls;afh
402c599
chore: delete build.yml
8d2b4a0
doifa
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 |
|---|---|---|
| @@ -0,0 +1,51 @@ | ||
| name: Package compiler | ||
|
|
||
| on: | ||
| push: | ||
| branches: | ||
| - master | ||
|
|
||
| pull_request: | ||
| branches: | ||
| - master | ||
|
|
||
| permissions: | ||
| contents: write | ||
| id-token: write | ||
|
|
||
| concurrency: | ||
| group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | ||
| cancel-in-progress: true | ||
|
|
||
| jobs: | ||
| compile: | ||
| name: 'Compile' | ||
| runs-on: ubuntu-latest | ||
| timeout-minutes: 5 | ||
| steps: | ||
| - uses: actions/checkout@v4 | ||
|
|
||
| - uses: actions/setup-node@v4 | ||
|
|
||
| - uses: actions/cache@v4 | ||
| with: | ||
| path: node_modules | ||
| key: ${{ runner.os }}-node_modules-${{ hashFiles('**/yarn.lock') }} | ||
| restore-keys: | | ||
| ${{ runner.os }}-node_modules- | ||
|
|
||
| - name: Install dependencies | ||
| run: yarn install | ||
|
|
||
| - run: 'yarn build' | ||
|
|
||
| - run: NODE_OPTIONS="--max_old_space_size=4096" NODE_ENV=production yarn bundle | ||
|
|
||
| - run: cp .gitignore .gitignore_old && cp .npmignore .gitignore && rm node_modules -fr | ||
|
|
||
| - uses: peaceiris/actions-gh-pages@v4 | ||
| with: | ||
| github_token: ${{ secrets.GITHUB_TOKEN }} | ||
| publish_dir: . | ||
| publish_branch: package | ||
| force_orphan: true | ||
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 |
|---|---|---|
|
|
@@ -33,4 +33,4 @@ | |
| "exclude": [ | ||
| "./src/**/*.spec.*" | ||
| ] | ||
| } | ||
| } | ||
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.