Skip to content

Commit

Permalink
build: upgrade to [email protected]
Browse files Browse the repository at this point in the history
  • Loading branch information
unicornware committed Sep 4, 2021
1 parent 47556ac commit a2e7afb
Show file tree
Hide file tree
Showing 5 changed files with 6,161 additions and 3,609 deletions.
19 changes: 11 additions & 8 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -54,17 +54,20 @@ jspm_packages/
# Yarn Integrity file
.yarn-integrity

# Yarn v2 (Not using Zero-Installs)
# See: https://yarnpkg.com/getting-started/qa#which-files-should-be-gitignored
.yarn/*
!.yarn/patches
!.yarn/releases
!.yarn/plugins
!.yarn/sdks
!.yarn/versions
.pnp.*

### Environment ###
# Environment variables
.env.local
.env.*.local
.env
# .env.test
.env*.local

### Jest ###
coverage/

### TypeScript ###
# TypeScript cache
*.tsbuildinfo
Expand All @@ -76,4 +79,4 @@ coverage/
# Builds & Distributions
dist/
*.zip
RELEASE_NOTES.md
RELEASE_NOTES.md
631 changes: 631 additions & 0 deletions .yarn/releases/yarn-3.0.1.cjs

Large diffs are not rendered by default.

38 changes: 38 additions & 0 deletions .yarnrc.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
# Yarn v2 Configuration
#
# References:
#
# - https://yarnpkg.com/configuration/yarnrc

defaultSemverRangePrefix: ''

enableInlineBuilds: true

nodeLinker: node-modules

npmPublishAccess: 'public'

npmPublishRegistry: 'https://npm.pkg.github.com'

npmRegistries:
//npm.pkg.github.com:
npmAlwaysAuth: true
npmAuthToken: ${PAT_GPR_FLDV}

//registry.npmjs.org:
npmAlwaysAuth: true
npmAuthToken: ${NPM_TOKEN_FLDV}

//registry.yarnpkg.org:
npmAlwaysAuth: true
npmAuthToken: ${NPM_TOKEN_FLDV}

npmRegistryServer: 'https://registry.yarnpkg.com'

npmScopes:
flex-development:
npmAlwaysAuth: true
npmAuthToken: ${PAT_GPR_FLDV}
npmRegistryServer: 'https://npm.pkg.github.com'

yarnPath: .yarn/releases/yarn-3.0.1.cjs
21 changes: 14 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,6 @@
"release": "zsh scripts/release.sh",
"release:github": "node scripts/js/release-github"
},
"dependencies": {},
"devDependencies": {
"@babel/core": "latest",
"@babel/eslint-parser": "latest",
Expand All @@ -63,16 +62,24 @@
"ts-node": "latest",
"ttypescript": "latest",
"typescript": "4.2.4",
"underscore-cli": "latest",
"yarn": "latest"
"underscore-cli": "latest"
},
"peerDependencies": {
"typescript": "4.2.4"
},
"peerDependenciesMeta": {},
"resolutions": {},
"engines": {
"npm": "use-yarn",
"yarn": "3.0.1"
},
"env": {
"optional": [],
"required": [
"NPM_TOKEN_FLDV",
"PAT_GPR_FLDV"
]
},
"packageManager": "[email protected]",
"release": {
"allowBranch": "main"
},
"required-env": []
}
}
Loading

0 comments on commit a2e7afb

Please sign in to comment.