vaderjs 2.2.3-s → 2.2.4

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
@@ -284,7 +284,7 @@ async function generateApp() {
284
284
  }
285
285
  async function runT() {
286
286
  return await new Bun.Transpiler({
287
- loader: 'ts',
287
+ loader: 'tsx',
288
288
  }).transformSync(await Bun.file(require.resolve('vaderjs')).text())
289
289
  }
290
290
  if (!fs.existsSync(path.join(process.cwd(), '/dist/src/vader'))
@@ -391,7 +391,7 @@ function handleFiles() {
391
391
 
392
392
  code = handleReplacements(code)
393
393
  code = await new Bun.Transpiler({
394
- loader: 'ts',
394
+ loader: 'tsx',
395
395
  }).transformSync(code)
396
396
 
397
397
  file = file.replace('.jsx', '.js').replace('.tsx', '.js')
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vaderjs",
3
- "version": "2.2.3s",
3
+ "version": "2.2.4",
4
4
  "description": "A simple and powerful JavaScript library for building modern web applications.",
5
5
  "bin": {
6
6
  "vaderjs": "./main.js"