Compare commits

...

4 Commits

Author SHA1 Message Date
Rahul Padigela 5d20c1f5f1 fix node-gyp dependency 2021-05-12 19:12:22 -07:00
Rahul Padigela 8082fbccb0 eve yarn v2 2021-05-12 18:06:59 -07:00
Rahul Padigela 5ed3c764a9 improvement: migrate yarnlock and update gitignore 2021-05-12 13:27:25 -07:00
Rahul Padigela 49702966cb improvement: yarn2 generated 2021-05-12 13:20:20 -07:00
6 changed files with 6099 additions and 4038 deletions

9
.gitignore vendored
View File

@ -28,3 +28,12 @@ node_modules
# Junit directory # Junit directory
junit junit
# yarn ignore list
.yarn/*
!.yarn/patches
!.yarn/releases
!.yarn/plugins
!.yarn/sdks
!.yarn/versions
.pnp.*

55
.yarn/releases/yarn-berry.cjs vendored Executable file

File diff suppressed because one or more lines are too long

2
.yarnrc.yml Normal file
View File

@ -0,0 +1,2 @@
yarnPath: ".yarn/releases/yarn-berry.cjs"
nodeLinker: "node-modules"

View File

@ -86,6 +86,10 @@ models:
name: install modules name: install modules
command: yarn install --frozen-lockfile command: yarn install --frozen-lockfile
haltOnFailure: true haltOnFailure: true
- ShellCommand: &yarn-v2
name: setup repo with yarn v2
command: yarn set version berry
haltOnFailure: true
- ShellCommand: &check-s3-action-logs - ShellCommand: &check-s3-action-logs
name: Check s3 action logs name: Check s3 action logs
command: | command: |
@ -140,6 +144,7 @@ stages:
steps: steps:
- Git: *clone - Git: *clone
- ShellCommand: *setup-github-ssh - ShellCommand: *setup-github-ssh
- ShellCommand: *yarn-v2
- ShellCommand: *yarn-install - ShellCommand: *yarn-install
- ShellCommand: *credentials - ShellCommand: *credentials
- ShellCommand: - ShellCommand:
@ -186,6 +191,7 @@ stages:
- Git: *clone - Git: *clone
- ShellCommand: *setup-github-ssh - ShellCommand: *setup-github-ssh
- ShellCommand: *credentials - ShellCommand: *credentials
- ShellCommand: *yarn-v2
- ShellCommand: *yarn-install - ShellCommand: *yarn-install
- ShellCommand: - ShellCommand:
command: | command: |
@ -234,6 +240,7 @@ stages:
- Git: *clone - Git: *clone
- ShellCommand: *setup-github-ssh - ShellCommand: *setup-github-ssh
- ShellCommand: *credentials - ShellCommand: *credentials
- ShellCommand: *yarn-v2
- ShellCommand: *yarn-install - ShellCommand: *yarn-install
- ShellCommand: - ShellCommand:
command: | command: |

View File

@ -30,6 +30,7 @@
"diskusage": "1.1.3", "diskusage": "1.1.3",
"google-auto-auth": "^0.9.1", "google-auto-auth": "^0.9.1",
"http-proxy": "^1.17.0", "http-proxy": "^1.17.0",
"node-gyp": "^8.0.0",
"npm-run-all": "~4.1.5", "npm-run-all": "~4.1.5",
"sproxydclient": "scality/sproxydclient#77a2de0", "sproxydclient": "scality/sproxydclient#77a2de0",
"utapi": "scality/utapi#45d7e26", "utapi": "scality/utapi#45d7e26",

10063
yarn.lock

File diff suppressed because it is too large Load Diff