Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
Tobias Krainhöfner committed Jan 6, 2023
1 parent 4a02bd5 commit 0f501d8
Show file tree
Hide file tree
Showing 7 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ class AngularTypescriptPublisher {
core.notice(`${Constants_1.default.DEPLOYMENT_TYPESCRIPT_ANGULAR} Creation complete`);
AngularTypescriptPublisher.installCommand();
core.notice(`Installed npm packages`);
AngularTypescriptPublisher.buildCommand();
AngularTypescriptPublisher.buildCommand().catch(error => { });
core.notice(`Built npm package`);
AngularTypescriptPublisher.publishCommand();
core.notice(`Published npm package`);
Expand All @@ -174,7 +174,7 @@ class AngularTypescriptPublisher {
}
static installCommand() {
return __awaiter(this, void 0, void 0, function* () {
return yield (0, execute_1.execute)(`cd ${Constants_1.default.DEPLOYMENT_TYPESCRIPT_ANGULAR}; npm install ng-packagr; npm install`);
return yield (0, execute_1.execute)(`cd ${Constants_1.default.DEPLOYMENT_TYPESCRIPT_ANGULAR}; npm install`);
});
}
static buildCommand() {
Expand Down
4 changes: 2 additions & 2 deletions lib/publisher/AngularPublisher.js
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ class AngularTypescriptPublisher {
core.notice(`${Constants_1.default.DEPLOYMENT_TYPESCRIPT_ANGULAR} Creation complete`);
AngularTypescriptPublisher.installCommand();
core.notice(`Installed npm packages`);
AngularTypescriptPublisher.buildCommand();
AngularTypescriptPublisher.buildCommand().catch(error => { });
core.notice(`Built npm package`);
AngularTypescriptPublisher.publishCommand();
core.notice(`Published npm package`);
Expand All @@ -72,7 +72,7 @@ class AngularTypescriptPublisher {
}
static installCommand() {
return __awaiter(this, void 0, void 0, function* () {
return yield (0, execute_1.execute)(`cd ${Constants_1.default.DEPLOYMENT_TYPESCRIPT_ANGULAR}; npm install ng-packagr; npm install`);
return yield (0, execute_1.execute)(`cd ${Constants_1.default.DEPLOYMENT_TYPESCRIPT_ANGULAR}; npm install`);
});
}
static buildCommand() {
Expand Down
Binary file modified node_modules/@vercel/ncc/dist/ncc/cli.js.cache
Binary file not shown.
Binary file modified node_modules/@vercel/ncc/dist/ncc/index.js.cache
Binary file not shown.
Binary file not shown.
Binary file not shown.
4 changes: 2 additions & 2 deletions src/publisher/AngularPublisher.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ export default class AngularTypescriptPublisher {
AngularTypescriptPublisher.installCommand();
core.notice(`Installed npm packages`);

AngularTypescriptPublisher.buildCommand();
AngularTypescriptPublisher.buildCommand().catch(error => {});
core.notice(`Built npm package`);

AngularTypescriptPublisher.publishCommand();
Expand All @@ -37,7 +37,7 @@ export default class AngularTypescriptPublisher {
}

static async installCommand(): Promise<string> {
return await execute(`cd ${Constants.DEPLOYMENT_TYPESCRIPT_ANGULAR}; npm install ng-packagr; npm install`);
return await execute(`cd ${Constants.DEPLOYMENT_TYPESCRIPT_ANGULAR}; npm install`);
}

static async buildCommand(): Promise<string> {
Expand Down

0 comments on commit 0f501d8

Please sign in to comment.