-
Notifications
You must be signed in to change notification settings - Fork 48
AXON-1209: Migration: npm → Yarn v4 (Berry) #1024
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
bhorai-atl
wants to merge
31
commits into
main
Choose a base branch
from
AXON-1209-move-to-yarn
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.
+26,788
−48,291
Open
Changes from all commits
Commits
Show all changes
31 commits
Select commit
Hold shift + click to select a range
9ecd844
build: added yarn settings
bhorai-atl fc35103
build: added yarn.lock instead of package.lock
bhorai-atl 8c7e5a7
build: updated scripts section
bhorai-atl 8d7dd26
build: updated ci workflows
bhorai-atl a5d7ad3
test: updated e2e Dockerfile
bhorai-atl 84a2da5
refactor: removed audit-cli config
bhorai-atl 701174f
chore: updated gitignore
bhorai-atl da4aeea
build: enabled corepack before caching
bhorai-atl 6bc2887
build: added immutable param
bhorai-atl 3691552
build: removed --recursive flag
bhorai-atl 93c3794
build: added recursive flag
bhorai-atl 6eaecba
chore: removed overrides
bhorai-atl 26f7da2
build: updated audit
bhorai-atl 964f5c8
build: added devDependencies
bhorai-atl 6cee15c
build: updated bundle size
bhorai-atl 6f51491
docs: changed npm to yarn
bhorai-atl c4d0a47
build: updated pre-commit hook
bhorai-atl ac12cd6
build: updated scripts section
bhorai-atl cc8a19c
build: added --no-dependencies flag
bhorai-atl 77a11f0
build: move to dependencies
bhorai-atl 23adbd0
build: updated vscodeignore
bhorai-atl 501cb09
build: updated maxAssetSize
bhorai-atl 16cd7a8
build: updated set version in package.json
bhorai-atl d0099fe
build: updated yarnrc config
bhorai-atl c3b38d9
build: added @atlaskit/link-provider
bhorai-atl 70f8a7c
chore: updated gitignore
bhorai-atl ff724cf
docs: added comment for pdfjs-dist
bhorai-atl 7738345
build: updated asset max size
bhorai-atl 3af3278
build: upgrade editor dependencies
bhorai-atl a916c0b
build: updated yarn.lock
bhorai-atl 13310e2
chore: updated yarn.lock
bhorai-atl 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 was deleted.
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
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 |
---|---|---|
@@ -1,57 +1,81 @@ | ||
# Allowed: | ||
# ---- ALLOWED ---- | ||
# build/ | ||
# resources/ | ||
# images/ | ||
# LICENSE | ||
|
||
__mocks__/ | ||
__tests__/ | ||
.generated/ | ||
e2e/ | ||
.npm/ | ||
# ---- IGNORED ---- | ||
|
||
# Don't package anything from here specifically: | ||
resources/rovo-dev/ | ||
# Source code | ||
src/** | ||
|
||
# Test | ||
testsutil/** | ||
__mocks__/** | ||
__tests__/** | ||
e2e/** | ||
coverage/** | ||
test-results/** | ||
.vscode-test/** | ||
*.test.ts | ||
*.test.tsx | ||
*.spec.ts | ||
*.spec.tsx | ||
|
||
# Build configs | ||
webpack.* | ||
tsconfig.json | ||
tsconfig.notest.json | ||
eslint.config.mjs | ||
jest.config.ts | ||
jest.react.config.ts | ||
jest.unit.config.ts | ||
playwright.config.js | ||
.prettierignore | ||
.nvmrc | ||
|
||
# Dev files | ||
.env | ||
.env.example | ||
.nvmrc | ||
.prettierignore | ||
.devcontainer/** | ||
.github/** | ||
.vscode/** | ||
.readme/** | ||
devhtml/** | ||
scripts/** | ||
.gitignore | ||
bitbucket-pipelines.yml | ||
CODEOWNERS | ||
changelog.md | ||
nightlyver.sh | ||
package.json | ||
readme.md | ||
eslint.config.mjs | ||
tsconfig.json | ||
tsconfig.notest.json | ||
vscode-stylenames.txt | ||
.devcontainer/ | ||
.github/ | ||
coverage/ | ||
scripts/ | ||
test-results/ | ||
|
||
.vscode/ | ||
.vscode-test/ | ||
out/test/ | ||
.eslintcache | ||
|
||
# node_modules | ||
node_modules/** | ||
!node_modules/@vscode/codicons/dist/** | ||
|
||
# Yarn cache and internals | ||
.yarn/** | ||
!.yarn/releases | ||
!.yarn/plugins | ||
.yarnrc.yml | ||
yarn.lock | ||
|
||
# Source maps | ||
**/*.map | ||
out/**/*.map | ||
src/ | ||
testsutil/ | ||
.gitignore | ||
bitbucket-pipelines.yml | ||
build/**/*.map | ||
|
||
# Certificates | ||
*.pem | ||
*.crt | ||
*.p12 | ||
*.vsix | ||
*.orig | ||
node_modules/ | ||
!node_modules/@vscode/codicons/dist/** | ||
webpack.* | ||
build/**/*.map | ||
.readme/ | ||
devhtml/ | ||
jest.config.ts | ||
jest.react.config.ts | ||
jest.unit.config.ts | ||
playwright.config.js | ||
|
||
# Generated files | ||
.generated/** | ||
.npm/** | ||
|
||
# Don't package anything from here specifically: | ||
resources/rovo-dev/** |
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,12 @@ | ||
compressionLevel: mixed | ||
|
||
enableGlobalCache: false | ||
|
||
npmAuditExcludePackages: | ||
# This package isnt used directly in the code but remains as a dependency of @atlaskit/media-viewer package for internal support reasons | ||
# TODO: Remove this once @atlaskit/media-viewer is updated to a version that doesn't depend on this package | ||
# See https://asecurityteam.atlassian.net/browse/PBAC-2014 | ||
|
||
- pdfjs-dist | ||
|
||
nodeLinker: node-modules |
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
Oops, something went wrong.
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.