piral-cli 0.15.0-beta.4725 → 0.15.0-beta.4751

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.
@@ -61034,6 +61034,7 @@ var enhancedResolve = import_enhanced_resolve.ResolverFactory.createResolver({
61034
61034
  exportsFields: ["exports"],
61035
61035
  importsFields: ["imports"],
61036
61036
  mainFields: ["browser", "module", "main"],
61037
+ useSyncFileSystemCalls: true,
61037
61038
  fileSystem: nodeFileSystem
61038
61039
  });
61039
61040
  function getModulePath(root, moduleName) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "piral-cli",
3
- "version": "0.15.0-beta.4725",
3
+ "version": "0.15.0-beta.4751",
4
4
  "description": "The standard CLI for creating and building a Piral instance or a Pilet.",
5
5
  "keywords": [
6
6
  "portal",
@@ -75,10 +75,10 @@
75
75
  },
76
76
  "dependencies": {
77
77
  "dets": "^0.12.0",
78
- "kras": "^0.15.1",
78
+ "kras": "^0.15.2",
79
79
  "rimraf": "^3.0.0",
80
80
  "typescript": "^4.7.3",
81
81
  "yargs": "^15.4.1"
82
82
  },
83
- "gitHead": "75f9470ac248fe45f806bd16b2adabde86b48e8f"
83
+ "gitHead": "b919766c22a76e2e815815d8becf645e45a1aa96"
84
84
  }
@@ -14,6 +14,7 @@ const enhancedResolve = ResolverFactory.createResolver({
14
14
  exportsFields: ['exports'],
15
15
  importsFields: ['imports'],
16
16
  mainFields: ['browser', 'module', 'main'],
17
+ useSyncFileSystemCalls: true,
17
18
  fileSystem: nodeFileSystem,
18
19
  });
19
20