rasengan 1.0.0-beta.18 → 1.0.0-beta.19

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.
@@ -81,7 +81,9 @@ function handleRequest(req, res) {
81
81
  });
82
82
  // read dir
83
83
  console.log({
84
- readdir: node_fs_1.default.readdirSync(process.cwd())
84
+ readdir: node_fs_1.default.readdirSync(process.cwd()),
85
+ readdir2: node_fs_1.default.readdirSync((0, node_path_1.join)(process.cwd(), "..")),
86
+ readdir3: node_fs_1.default.readdirSync((0, node_path_1.join)(process.cwd(), "..", "..")),
85
87
  });
86
88
  _b.label = 1;
87
89
  case 1:
@@ -53,7 +53,9 @@ export default function handleRequest(req, res) {
53
53
  });
54
54
  // read dir
55
55
  console.log({
56
- readdir: fsSync.readdirSync(process.cwd())
56
+ readdir: fsSync.readdirSync(process.cwd()),
57
+ readdir2: fsSync.readdirSync(join(process.cwd(), "..")),
58
+ readdir3: fsSync.readdirSync(join(process.cwd(), "..", "..")),
57
59
  });
58
60
  _b.label = 1;
59
61
  case 1:
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "rasengan",
3
3
  "private": false,
4
- "version": "1.0.0-beta.18",
4
+ "version": "1.0.0-beta.19",
5
5
  "description": "The modern frontend framework for React",
6
6
  "type": "module",
7
7
  "main": "lib/esm/index.js",