Skip to content

Commit

Permalink
removed deprecated step in build process
Browse files Browse the repository at this point in the history
  • Loading branch information
Dylan committed Sep 10, 2020
1 parent 9010dd7 commit 41f2354
Showing 1 changed file with 0 additions and 7 deletions.
7 changes: 0 additions & 7 deletions .serverless_plugins/build-apps/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -73,12 +73,6 @@ const runAppCmd = (cmd, app) => {
};

const buildApps = (sls) => {
const installDeps = (app) => {
console.log();
sls.cli.log(`${app}: Installing dependencies from package-lock ... `);
runAppCmd('npm ci', app);
console.log();
};
const installLayerDeps = () => {
console.log();
sls.cli.log(`Lambda Layer: Installing dependencies from package-lock ... `);
Expand All @@ -98,7 +92,6 @@ const buildApps = (sls) => {
};

for (const app of apps) {
installDeps(app);
installLayerDeps();
nuxtBuild(app);
}
Expand Down

0 comments on commit 41f2354

Please sign in to comment.