@ewas/create-esbuild-app
Advanced tools
Comparing version 0.0.18 to 0.0.19
{ | ||
"name": "@ewas/create-esbuild-app", | ||
"version": "0.0.18", | ||
"version": "0.0.19", | ||
"description": "template project scaffolding generator", | ||
@@ -5,0 +5,0 @@ "main": "./bin/index.js", |
@@ -1,5 +0,7 @@ | ||
const path = require('path'); | ||
import path from "path"; | ||
module.exports = { | ||
entryPoints: [path.resolve(__dirname, 'src/main.jsx')] | ||
export default { | ||
esbuildOptions: { | ||
entryPoints: [path.resolve(__dirname, "src/main.jsx")], | ||
}, | ||
}; |
@@ -1,5 +0,7 @@ | ||
import path from 'path'; | ||
import path from "path"; | ||
export default { | ||
entryPoints: [path.resolve(__dirname, 'src/main.tsx')] | ||
esbuildOptions: { | ||
entryPoints: [path.resolve(__dirname, "src/main.tsx")], | ||
}, | ||
}; |
Sorry, the diff of this file is not supported yet
27080
402