Skip to content

Commit

Permalink
chore(deps): upgrade dev dependencies (#543)
Browse files Browse the repository at this point in the history
Upgrades project dependencies. See details in [workflow run].

[Workflow Run]: https://github.com/cdk8s-team/cdk8s-validation-plugin-example/actions/runs/7016415959

------

*Automatically created by projen via the "upgrade-dev-dependencies-main" workflow*
  • Loading branch information
cdk8s-automation authored Nov 29, 2023
1 parent d823130 commit 057402a
Show file tree
Hide file tree
Showing 9 changed files with 465 additions and 536 deletions.
2 changes: 1 addition & 1 deletion .projen/deps.json

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

4 changes: 2 additions & 2 deletions .projen/tasks.json

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

2 changes: 1 addition & 1 deletion .projenrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ const project = new Cdk8sTeamTypeScriptProject({

// used in integration tests to author a cdk8s application.
'cdk8s',
'cdk8s-plus-24',
'cdk8s-plus-25',
'constructs',
'ts-node',

Expand Down
8 changes: 4 additions & 4 deletions package.json

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

2 changes: 1 addition & 1 deletion test/__fixtures__/invalid-app/main.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import * as cdk8s from 'cdk8s';
import * as kplus from 'cdk8s-plus-24';
import * as kplus from 'cdk8s-plus-25';

const app = new cdk8s.App();

Expand Down
2 changes: 1 addition & 1 deletion test/__fixtures__/valid-app/main.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import * as cdk8s from 'cdk8s';
import * as kplus from 'cdk8s-plus-24';
import * as kplus from 'cdk8s-plus-25';

const app = new cdk8s.App();

Expand Down
2 changes: 1 addition & 1 deletion test/index.test.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import * as path from 'path';
import * as cdk8s from 'cdk8s';
import { ValidationContext } from 'cdk8s-cli/plugins';
import * as kplus from 'cdk8s-plus-24';
import * as kplus from 'cdk8s-plus-25';
import * as fs from 'fs-extra';
import * as yaml from 'yaml';
import { withTempDir } from './utils';
Expand Down
6 changes: 3 additions & 3 deletions test/validate.integ.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -47,12 +47,12 @@ async function synth(fixture: string) {
// our project already declares these dependencies, so lets just
// take them instead of installing new ones.
const cdk8s = path.resolve(path.join(__dirname, '..', 'node_modules/.bin/cdk8s'));
const kplus = path.join(require.resolve('cdk8s-plus-24'), '..', '..');
const kplus = path.join(require.resolve('cdk8s-plus-25'), '..', '..');
const k = path.join(require.resolve('cdk8s'), '..', '..');

// symlink cdk8s and cdk8s-plus-24 because our cdk8s app require it
// symlink cdk8s and cdk8s-plus-25 because our cdk8s app require it
fs.mkdirpSync('node_modules');
child.execSync(`ln -s ${kplus} cdk8s-plus-24`, { cwd: path.join(dir, 'node_modules') });
child.execSync(`ln -s ${kplus} cdk8s-plus-25`, { cwd: path.join(dir, 'node_modules') });
child.execSync(`ln -s ${k} cdk8s`, { cwd: path.join(dir, 'node_modules') });

// populate the cdk8s plugins directory with our plugin
Expand Down
973 changes: 451 additions & 522 deletions yarn.lock

Large diffs are not rendered by default.

0 comments on commit 057402a

Please sign in to comment.