Skip to content

Commit

Permalink
Update references of _loadurl.js to _loadurl.mjs
Browse files Browse the repository at this point in the history
Signed-off-by: Steve Fan <[email protected]>
  • Loading branch information
stevefan1999-personal committed Jul 29, 2024
1 parent a112ed2 commit c3063a8
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .gitignore

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.

6 changes: 3 additions & 3 deletions .projenrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -47,10 +47,10 @@ const project = new Cdk8sTeamJsiiProject({
jsiiVersion: '^5',
});

// _loadurl.js is written in javascript so we need to commit it and also copy it
// _loadurl.mjs is written in javascript so we need to commit it and also copy it
// after compilation to the `lib/` directory.
project.gitignore.include('/src/_loadurl.js');
project.compileTask.exec('cp src/_loadurl.js lib/');
project.gitignore.include('/src/_loadurl.mjs');
project.compileTask.exec('cp src/_loadurl.mjs lib/');

const installHelm = project.addTask('install-helm', {
exec: 'curl https://raw.githubusercontent.com/helm/helm/master/scripts/get-helm-3 | bash',
Expand Down

0 comments on commit c3063a8

Please sign in to comment.