rajt 0.0.105 → 0.0.106

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/bin/rajt.js +2 -2
  2. package/package.json +1 -1
package/bin/rajt.js CHANGED
@@ -53,9 +53,9 @@ Consider using a Node.js version manager such as https://volta.sh or https://git
53
53
  function findTsx() {
54
54
  const exts = ['', '.exe', '.cmd'];
55
55
  const paths = [
56
- [_root, '../node_modules/tsx/dist/cli.mjs'],
56
+ [__dirname, '../node_modules/tsx/dist/cli.mjs'],
57
57
  [process.cwd(), 'node_modules/tsx/dist/cli.mjs'],
58
- [_root, '../node_modules/.bin/tsx'],
58
+ [__dirname, '../node_modules/.bin/tsx'],
59
59
  [process.cwd(), 'node_modules/.bin/tsx'],
60
60
  ];
61
61
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "rajt",
3
3
  "description": "A serverless bundler layer, fully typed for AWS Lambda (Node.js and LLRT) and Cloudflare Workers.",
4
- "version": "0.0.105",
4
+ "version": "0.0.106",
5
5
  "type": "module",
6
6
  "main": "./src/index.ts",
7
7
  "files": ["bin", "src"],