@qodalis/cli-files 2.0.0-beta.1 → 2.0.0-beta.2
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.
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@qodalis/cli-files",
|
|
3
|
-
"version": "2.0.0-beta.
|
|
3
|
+
"version": "2.0.0-beta.2",
|
|
4
4
|
"description": "@qodalis/cli extension for Linux file management commands with in-memory filesystem.",
|
|
5
5
|
"author": "Nicolae Lupei, Qodalis Solutions",
|
|
6
6
|
"license": "MIT",
|
|
@@ -20,10 +20,10 @@
|
|
|
20
20
|
"cd",
|
|
21
21
|
"mkdir"
|
|
22
22
|
],
|
|
23
|
-
"umd": "./umd/index.js",
|
|
24
|
-
"unpkg": "./umd/index.js",
|
|
23
|
+
"umd": "./umd/index.global.js",
|
|
24
|
+
"unpkg": "./umd/index.global.js",
|
|
25
25
|
"dependencies": {
|
|
26
|
-
"@qodalis/cli-core": "2.0.0-beta.
|
|
26
|
+
"@qodalis/cli-core": "2.0.0-beta.2"
|
|
27
27
|
},
|
|
28
28
|
"sideEffects": false,
|
|
29
29
|
"main": "./public-api.js",
|
package/public-api.js
CHANGED
|
@@ -6,7 +6,7 @@ var cliCore = require('@qodalis/cli-core');
|
|
|
6
6
|
var IFileSystemService_TOKEN = "cli-file-system-service";
|
|
7
7
|
|
|
8
8
|
// src/lib/version.ts
|
|
9
|
-
var LIBRARY_VERSION = "2.0.0-beta.
|
|
9
|
+
var LIBRARY_VERSION = "2.0.0-beta.2";
|
|
10
10
|
var API_VERSION = 2;
|
|
11
11
|
|
|
12
12
|
// src/lib/processors/cli-ls-command-processor.ts
|
|
@@ -3839,7 +3839,7 @@ var STORE_NAME = "filesystem";
|
|
|
3839
3839
|
var ROOT_KEY = "root";
|
|
3840
3840
|
var CWD_KEY = "cwd";
|
|
3841
3841
|
var HOME_KEY = "home";
|
|
3842
|
-
var DEFAULT_HOME = "/
|
|
3842
|
+
var DEFAULT_HOME = "/";
|
|
3843
3843
|
function createSeedFileSystem() {
|
|
3844
3844
|
const now = Date.now();
|
|
3845
3845
|
return {
|