vaderjs 1.8.8 → 1.8.9

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