-
Notifications
You must be signed in to change notification settings - Fork 138
デプロイ001 #273
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
kimurash
wants to merge
37
commits into
CyberAgentHack:main
Choose a base branch
from
kimurash:develop
base: main
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.
Open
デプロイ001 #273
Changes from all commits
Commits
Show all changes
37 commits
Select commit
Hold shift + click to select a range
76524db
local environment
kimurash 99d4f4a
webpack production mode
kimurash ba376b4
devtool source map
kimurash 955f667
enable minimization
kimurash 2fa4ed0
split chunks
kimurash afdbd37
produciton build
kimurash f25e36c
lazy container loading
kimurash b88d0fc
limit syntax highlighter language
kimurash 70fb9a4
only support modern browser
kimurash df85f86
local environment by mise
kimurash 784d485
add test command
kimurash 8ab1f7f
remove fetcher async false
kimurash fb1f783
remove 2 ** 18 hasReached loop
kimurash 3120d1e
install webpack bundle analyzer
kimurash 16d571c
uninstall ffmpeg packages
kimurash 8d04072
install ffmpeg in Dockerfile
kimurash 5850de6
replace GIF-based movie rendering with native HTML5 video
kimurash 84ab51c
add media transcode utility
kimurash 67a6442
change movie.ts
kimurash e840c5b
change sound.ts
kimurash b56a09d
convert gif to mp4
kimurash c061336
add application url option to scoring start command
kimurash a2419d9
install sharp & exifr
kimurash 24d6852
add width & height to image model
kimurash cc9a05c
generate image seed
kimurash be60387
insert image seed
kimurash b00f03c
change image post handler
kimurash 396be1b
change image schema & type definition
kimurash d664a78
uninstall imagemagick
kimurash 2f54ab8
change client image implementation
kimurash 5208546
install necessary packages
kimurash 9ed05d5
add sentiment api
kimurash 10b7aff
change client negaposi-analyzer
kimurash a3eb27d
uninstall unnecessary packages
kimurash d8c08cc
recover necessary packages
kimurash 814e803
install tailwind & postcss plugin
kimurash 40936e8
build tailwind
kimurash 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
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
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.
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.
@babel/preset-envis now configured withuseBuiltIns: "usage", but the webpack entry still importscore-js(andregenerator-runtime/runtime). Keepingcore-jsin the entry typically pulls in a large global polyfill bundle and can duplicate polyfills, largely negating the benefit ofusage. Either remove thecore-js(and possibly regenerator) entries and rely onusage, or revert to an entry-based polyfill strategy (e.g.,useBuiltIns: false/entry) so the configuration is consistent.