Commit e5e4826 1 parent e474bb7 commit e5e4826 Copy full SHA for e5e4826
File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ if (existsSync(packageJsonPath) === false) {
9
9
}
10
10
const packageJson = require ( packageJsonPath ) ;
11
11
12
- console . log ( '\n🚀 nano-build 📦 %s\n' , packageJson . nam ) ;
12
+ console . log ( '\n🚀 nano-build 📦 %s\n' , packageJson . name ) ;
13
13
14
14
const devMode = process . env . NODE_ENV !== 'production' ;
15
15
@@ -122,13 +122,13 @@ const presetRecord = {
122
122
...( devMode ? developmentOptions : productionOptions ) ,
123
123
} ,
124
124
microservice : {
125
- entryPoints : [ 'src/ts/ main.ts' ] ,
125
+ entryPoints : [ 'src/main.ts' ] ,
126
126
platform : 'node' ,
127
127
format : 'esm' ,
128
128
mangleProps : '_$' ,
129
129
target : 'node20' ,
130
130
...( devMode ? developmentOptions : productionOptions ) ,
131
- } ,
131
+ }
132
132
} ;
133
133
134
134
function getOptions ( ) {
You can’t perform that action at this time.
0 commit comments