vaderjs 1.8.7 → 1.8.8

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 +1 -1
  2. package/package.json +1 -1
package/main.js CHANGED
@@ -181,7 +181,7 @@ const handleReplacements = (code) => {
181
181
 
182
182
  if (!fs.existsSync(process.cwd() + '/dev/bundler.js')) {
183
183
  console.log(require.resolve('vaderjs/bundler/index.js'))
184
- fs.copyFileSync(path.join(process.cwd() + '/node_modules/vaderjs/bundler/index.js'), process.cwd() + '/dev/bundler.js')
184
+ fs.copyFileSync(require.resolve('vaderjs/bundler/index.js'), process.cwd() + '/dev/bundler.js')
185
185
  }
186
186
  let start = Date.now()
187
187
  async function generateApp() {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vaderjs",
3
- "version": "1.8.7",
3
+ "version": "1.8.8",
4
4
  "description": "A simple and powerful JavaScript library for building modern web applications.",
5
5
  "bin": {
6
6
  "vaderjs": "./main.js"