Skip to content

Commit

Permalink
feat: support for juno.config.ts or juno.config.js config files (#89)
Browse files Browse the repository at this point in the history
  • Loading branch information
peterpeterparker authored Feb 16, 2024
1 parent b959148 commit 3453dcd
Show file tree
Hide file tree
Showing 19 changed files with 4,011 additions and 2,327 deletions.
4 changes: 2 additions & 2 deletions esbuild.mjs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import {config} from 'dotenv';
import esbuild from 'esbuild';
import {existsSync, mkdirSync, writeFileSync} from 'fs';
import {join} from 'path';
import {existsSync, mkdirSync, writeFileSync} from 'node:fs';
import {join} from 'node:path';

config({
path: process.env.NODE_ENV === 'development' ? `.env.development` : `.env.production`
Expand Down
Loading

0 comments on commit 3453dcd

Please sign in to comment.