@opensumi/ide-storage 2.15.1 → 2.15.3
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/lib/browser/index.js +1 -1
- package/lib/browser/storage-path.js +6 -6
- package/lib/browser/storage.contribution.js +9 -9
- package/lib/browser/storage.service.js +9 -9
- package/lib/common/index.js +2 -2
- package/lib/common/index.js.map +1 -1
- package/lib/index.js +1 -1
- package/lib/index.js.map +1 -1
- package/package.json +6 -6
package/lib/browser/index.js
CHANGED
|
@@ -28,7 +28,7 @@ let StorageModule = class StorageModule extends ide_core_browser_1.BrowserModule
|
|
|
28
28
|
];
|
|
29
29
|
}
|
|
30
30
|
};
|
|
31
|
-
StorageModule =
|
|
31
|
+
StorageModule = tslib_1.__decorate([
|
|
32
32
|
(0, di_1.Injectable)()
|
|
33
33
|
], StorageModule);
|
|
34
34
|
exports.StorageModule = StorageModule;
|
|
@@ -122,17 +122,17 @@ let StoragePathServer = class StoragePathServer {
|
|
|
122
122
|
}
|
|
123
123
|
}
|
|
124
124
|
};
|
|
125
|
-
|
|
125
|
+
tslib_1.__decorate([
|
|
126
126
|
(0, di_1.Autowired)(ide_file_service_1.IFileServiceClient),
|
|
127
|
-
|
|
127
|
+
tslib_1.__metadata("design:type", Object)
|
|
128
128
|
], StoragePathServer.prototype, "fileSystem", void 0);
|
|
129
|
-
|
|
129
|
+
tslib_1.__decorate([
|
|
130
130
|
(0, di_1.Autowired)(ide_core_common_1.ILogger),
|
|
131
|
-
|
|
131
|
+
tslib_1.__metadata("design:type", Object)
|
|
132
132
|
], StoragePathServer.prototype, "logger", void 0);
|
|
133
|
-
StoragePathServer =
|
|
133
|
+
StoragePathServer = tslib_1.__decorate([
|
|
134
134
|
(0, di_1.Injectable)(),
|
|
135
|
-
|
|
135
|
+
tslib_1.__metadata("design:paramtypes", [])
|
|
136
136
|
], StoragePathServer);
|
|
137
137
|
exports.StoragePathServer = StoragePathServer;
|
|
138
138
|
//# sourceMappingURL=storage-path.js.map
|
|
@@ -31,23 +31,23 @@ let DatabaseStorageContribution = class DatabaseStorageContribution {
|
|
|
31
31
|
}
|
|
32
32
|
}
|
|
33
33
|
};
|
|
34
|
-
|
|
34
|
+
tslib_1.__decorate([
|
|
35
35
|
(0, di_1.Autowired)(common_1.IWorkspaceStorageServer),
|
|
36
|
-
|
|
36
|
+
tslib_1.__metadata("design:type", Object)
|
|
37
37
|
], DatabaseStorageContribution.prototype, "workspaceStorage", void 0);
|
|
38
|
-
|
|
38
|
+
tslib_1.__decorate([
|
|
39
39
|
(0, di_1.Autowired)(common_1.IGlobalStorageServer),
|
|
40
|
-
|
|
40
|
+
tslib_1.__metadata("design:type", Object)
|
|
41
41
|
], DatabaseStorageContribution.prototype, "globalStorage", void 0);
|
|
42
|
-
|
|
42
|
+
tslib_1.__decorate([
|
|
43
43
|
(0, di_1.Autowired)(ide_core_browser_1.AppConfig),
|
|
44
|
-
|
|
44
|
+
tslib_1.__metadata("design:type", Object)
|
|
45
45
|
], DatabaseStorageContribution.prototype, "appConfig", void 0);
|
|
46
|
-
|
|
46
|
+
tslib_1.__decorate([
|
|
47
47
|
(0, di_1.Autowired)(ide_workspace_1.IWorkspaceService),
|
|
48
|
-
|
|
48
|
+
tslib_1.__metadata("design:type", Object)
|
|
49
49
|
], DatabaseStorageContribution.prototype, "workspaceService", void 0);
|
|
50
|
-
DatabaseStorageContribution =
|
|
50
|
+
DatabaseStorageContribution = tslib_1.__decorate([
|
|
51
51
|
(0, ide_core_browser_1.Domain)(ide_core_browser_1.StorageResolverContribution, ide_core_browser_1.ClientAppContribution)
|
|
52
52
|
], DatabaseStorageContribution);
|
|
53
53
|
exports.DatabaseStorageContribution = DatabaseStorageContribution;
|
|
@@ -29,19 +29,19 @@ let StorageServer = class StorageServer {
|
|
|
29
29
|
return await this.storageExistPromises.get(storagePath);
|
|
30
30
|
}
|
|
31
31
|
};
|
|
32
|
-
|
|
32
|
+
tslib_1.__decorate([
|
|
33
33
|
(0, di_1.Autowired)(ide_file_service_1.IFileServiceClient),
|
|
34
|
-
|
|
34
|
+
tslib_1.__metadata("design:type", Object)
|
|
35
35
|
], StorageServer.prototype, "fileSystem", void 0);
|
|
36
|
-
|
|
36
|
+
tslib_1.__decorate([
|
|
37
37
|
(0, di_1.Autowired)(common_1.IStoragePathServer),
|
|
38
|
-
|
|
38
|
+
tslib_1.__metadata("design:type", Object)
|
|
39
39
|
], StorageServer.prototype, "dataStoragePathServer", void 0);
|
|
40
|
-
|
|
40
|
+
tslib_1.__decorate([
|
|
41
41
|
(0, di_1.Autowired)(ide_core_common_1.ILogger),
|
|
42
|
-
|
|
42
|
+
tslib_1.__metadata("design:type", Object)
|
|
43
43
|
], StorageServer.prototype, "logger", void 0);
|
|
44
|
-
StorageServer =
|
|
44
|
+
StorageServer = tslib_1.__decorate([
|
|
45
45
|
(0, di_1.Injectable)()
|
|
46
46
|
], StorageServer);
|
|
47
47
|
exports.StorageServer = StorageServer;
|
|
@@ -153,7 +153,7 @@ let WorkspaceStorageServer = class WorkspaceStorageServer extends StorageServer
|
|
|
153
153
|
}
|
|
154
154
|
}
|
|
155
155
|
};
|
|
156
|
-
WorkspaceStorageServer =
|
|
156
|
+
WorkspaceStorageServer = tslib_1.__decorate([
|
|
157
157
|
(0, di_1.Injectable)()
|
|
158
158
|
], WorkspaceStorageServer);
|
|
159
159
|
exports.WorkspaceStorageServer = WorkspaceStorageServer;
|
|
@@ -243,7 +243,7 @@ let GlobalStorageServer = class GlobalStorageServer extends StorageServer {
|
|
|
243
243
|
}
|
|
244
244
|
}
|
|
245
245
|
};
|
|
246
|
-
GlobalStorageServer =
|
|
246
|
+
GlobalStorageServer = tslib_1.__decorate([
|
|
247
247
|
(0, di_1.Injectable)()
|
|
248
248
|
], GlobalStorageServer);
|
|
249
249
|
exports.GlobalStorageServer = GlobalStorageServer;
|
package/lib/common/index.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
const tslib_1 = require("tslib");
|
|
4
|
-
|
|
5
|
-
|
|
4
|
+
tslib_1.__exportStar(require("./storage"), exports);
|
|
5
|
+
tslib_1.__exportStar(require("./storage-path"), exports);
|
|
6
6
|
//# sourceMappingURL=index.js.map
|
package/lib/common/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/common/index.ts"],"names":[],"mappings":";;;AAAA,
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/common/index.ts"],"names":[],"mappings":";;;AAAA,oDAA0B;AAC1B,yDAA+B"}
|
package/lib/index.js
CHANGED
package/lib/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;AAAA,
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;AAAA,mDAAyB"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@opensumi/ide-storage",
|
|
3
|
-
"version": "2.15.
|
|
3
|
+
"version": "2.15.3",
|
|
4
4
|
"files": [
|
|
5
5
|
"lib"
|
|
6
6
|
],
|
|
@@ -16,13 +16,13 @@
|
|
|
16
16
|
"url": "git@github.com:opensumi/core.git"
|
|
17
17
|
},
|
|
18
18
|
"dependencies": {
|
|
19
|
-
"@opensumi/ide-core-common": "2.15.
|
|
19
|
+
"@opensumi/ide-core-common": "2.15.3"
|
|
20
20
|
},
|
|
21
21
|
"devDependencies": {
|
|
22
|
-
"@opensumi/ide-core-browser": "2.15.
|
|
22
|
+
"@opensumi/ide-core-browser": "2.15.3",
|
|
23
23
|
"@opensumi/ide-dev-tool": "^1.3.1",
|
|
24
|
-
"@opensumi/ide-file-service": "2.15.
|
|
25
|
-
"@opensumi/ide-workspace": "2.15.
|
|
24
|
+
"@opensumi/ide-file-service": "2.15.3",
|
|
25
|
+
"@opensumi/ide-workspace": "2.15.3"
|
|
26
26
|
},
|
|
27
|
-
"gitHead": "
|
|
27
|
+
"gitHead": "d4297082ad721a2350e80a650c0875c4adc83cf4"
|
|
28
28
|
}
|