Skip to content

Commit

Permalink
trying npm i
Browse files Browse the repository at this point in the history
  • Loading branch information
shannonhochkins committed Jul 5, 2024
1 parent c943c54 commit feb5d03
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion hakit/config.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "Hakit",
"version": "1.0.31",
"version": "1.0.32",
"slug": "hakit",
"init": false,
"ingress": true,
Expand Down
4 changes: 2 additions & 2 deletions hakit/server/routes/run-application.ts
Original file line number Diff line number Diff line change
Expand Up @@ -104,8 +104,8 @@ export async function runApplication(app: Express) {
const nextJsBuilt = existsSync(join(APP_DIRECTORY, 'app', '.next'));
try {
if (!nextJsBuilt) {
const installDependencies = `cd ${join(APP_DIRECTORY, 'app')} && npm ci`;
const buildNextApp = `cd ${join(APP_DIRECTORY, 'app')} && SKIP_LINTING=true SKIP_TYPE_CHECKING=true npm run build`;
const installDependencies = `cd ${join(APP_DIRECTORY, 'app')} && npm i`;
const buildNextApp = `cd ${join(APP_DIRECTORY, 'app')} && SKIP_TYPE_CHECKING=true npm run build`;

try {
console.log('Installing dependencies');
Expand Down

0 comments on commit feb5d03

Please sign in to comment.