Skip to content

Commit

Permalink
chore(deps): update all dependencies j:cdx-227 (major) (#333)
Browse files Browse the repository at this point in the history
* chore(deps): update all dependencies j:cdx-227

* back-track strip ansi

* node 14

* bump timeout

Co-authored-by: Renovate Bot <[email protected]>
Co-authored-by: Louis Bompart <[email protected]>
  • Loading branch information
3 people authored Jul 15, 2021
1 parent 04cd720 commit 8d80f99
Show file tree
Hide file tree
Showing 22 changed files with 6,429 additions and 5,825 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-binaries.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:

steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
- uses: actions/setup-node@v2
with:
node-version: '14'
- name: Setup
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
git config --global core.autocrlf false
git config --global core.eol lf
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
- uses: actions/setup-node@v2
with:
node-version: ${{matrix.node}}
- name: Setup repo
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/prbot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- uses: actions/setup-node@v1
- uses: actions/setup-node@v2
with:
node-version: '14'
- run: npm i
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
fetch-depth: 0
# pulls all tags (needed for lerna to correctly version)
- run: git fetch --depth=1 origin +refs/tags/*:refs/tags/* # see https://stackoverflow.com/a/60184319/9285308
- uses: actions/setup-node@v1
- uses: actions/setup-node@v2
with:
node-version: '14'
- run: npm run setup
Expand Down
133 changes: 68 additions & 65 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"@commitlint/config-lerna-scopes": "12.1.4",
"@commitlint/lint": "12.1.4",
"@oclif/dev-cli": "1.26.0",
"@types/node": "14.17.5",
"@types/node": "^14.17.5",
"@typescript-eslint/eslint-plugin": "4.28.3",
"@typescript-eslint/parser": "4.28.3",
"async-retry": "1.3.1",
Expand All @@ -28,12 +28,12 @@
"gts": "3.1.0",
"husky": "7.0.1",
"lerna": "4.0.0",
"lint-staged": "10.5.4",
"lint-staged": "11.0.1",
"prettier": "2.3.2",
"rimraf": "3.0.2",
"ts-node": "10.1.0",
"typescript": "3.9.10",
"yargs": "16.2.0"
"typescript": "4.3.5",
"yargs": "17.0.1"
},
"commitlint": {
"extends": [
Expand Down
31 changes: 1 addition & 30 deletions packages/angular/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion packages/angular/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
"@types/fs-extra": "9.0.12",
"@types/jasmine": "3.8.1",
"@types/mocha": "8.2.3",
"@types/node": "14.17.5",
"@types/node": "^14.17.5",
"fs-extra": "10.0.0",
"jasmine": "3.8.0",
"prettier": "2.3.2"
Expand Down
8 changes: 4 additions & 4 deletions packages/cli-e2e/__tests__/angular.specs.ts
Original file line number Diff line number Diff line change
Expand Up @@ -311,7 +311,7 @@ describe('ui:create:angular', () => {
afterAll(async () => {
restoreEnvironmentFile(join(projectName, 'server'));
await serverProcessManager.killAllProcesses();
}, 5e3);
}, 30e3);

it(
'should not start the application',
Expand Down Expand Up @@ -354,7 +354,7 @@ describe('ui:create:angular', () => {
afterAll(async () => {
overwriteEnvFile(join(projectName, 'server'), envFileContent);
await serverProcessManager.killAllProcesses();
}, 5e3);
}, 30e3);

it('should redirect the user to an error page', async () => {
await page.goto(searchPageEndpoint(), {waitUntil: 'networkidle2'});
Expand Down Expand Up @@ -383,7 +383,7 @@ describe('ui:create:angular', () => {
afterAll(async () => {
await serverProcessManager.killAllProcesses();
resetCustomTokenEndpoint();
}, 5e3);
}, 30e3);

beforeEach(async () => {
page.on('request', (request: HTTPRequest) => {
Expand Down Expand Up @@ -439,7 +439,7 @@ describe('ui:create:angular', () => {
afterAll(async () => {
await Promise.all(dummyServers.map((server) => server.close()));
await serverProcessManager.killAllProcesses();
}, 5e3);
}, 30e3);

it('should allocate a new port for the application', async () => {
expect(clientPort).not.toEqual(usedClientPort);
Expand Down
Loading

0 comments on commit 8d80f99

Please sign in to comment.