vaderjs 1.8.4 → 1.8.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/main.js +2 -1
  2. package/package.json +1 -1
package/main.js CHANGED
@@ -180,7 +180,8 @@ const handleReplacements = (code) => {
180
180
  }
181
181
 
182
182
  if (!fs.existsSync(process.cwd() + '/dev/bundler.js')) {
183
- fs.copyFileSync(process.cwd() + '/node_modules/vaderjs/dev/bundler.js', process.cwd() + '/dev/bundler.js')
183
+ console.log(Bun.resolve('vaderjs/dev/bundler.js'))
184
+ fs.copyFileSync(path.join(process.cwd() + '/node_modules/vaderjs/dev/bundler.js'), process.cwd() + '/dev/bundler.js')
184
185
  }
185
186
  let start = Date.now()
186
187
  async function generateApp() {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vaderjs",
3
- "version": "1.8.4",
3
+ "version": "1.8.6",
4
4
  "description": "A simple and powerful JavaScript library for building modern web applications.",
5
5
  "bin": {
6
6
  "vaderjs": "./main.js"