@dxos/config 0.7.5-labs.ea4b4c2 → 0.7.5-labs.f400bbc
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 +7 -6
- package/vite-plugin.js +0 -8
package/package.json
CHANGED
|
@@ -1,12 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dxos/config",
|
|
3
|
-
"version": "0.7.5-labs.
|
|
3
|
+
"version": "0.7.5-labs.f400bbc",
|
|
4
4
|
"description": "Config utilities",
|
|
5
5
|
"homepage": "https://dxos.org",
|
|
6
6
|
"bugs": "https://github.com/dxos/dxos/issues",
|
|
7
7
|
"license": "MIT",
|
|
8
8
|
"author": "DXOS.org",
|
|
9
9
|
"sideEffects": true,
|
|
10
|
+
"type": "module",
|
|
10
11
|
"main": "dist/lib/node/index.cjs",
|
|
11
12
|
"browser": {
|
|
12
13
|
"./src/loaders/index.ts": "./src/loaders/browser.js",
|
|
@@ -33,11 +34,11 @@
|
|
|
33
34
|
"lodash.defaultsdeep": "^4.6.1",
|
|
34
35
|
"lodash.ismatch": "^4.4.0",
|
|
35
36
|
"pkg-up": "^3.1.0",
|
|
36
|
-
"@dxos/node-std": "0.7.5-labs.
|
|
37
|
-
"@dxos/
|
|
38
|
-
"@dxos/
|
|
39
|
-
"@dxos/
|
|
40
|
-
"@dxos/
|
|
37
|
+
"@dxos/node-std": "0.7.5-labs.f400bbc",
|
|
38
|
+
"@dxos/protocols": "0.7.5-labs.f400bbc",
|
|
39
|
+
"@dxos/log": "0.7.5-labs.f400bbc",
|
|
40
|
+
"@dxos/util": "0.7.5-labs.f400bbc",
|
|
41
|
+
"@dxos/tracing": "0.7.5-labs.f400bbc"
|
|
41
42
|
},
|
|
42
43
|
"devDependencies": {
|
|
43
44
|
"@types/js-yaml": "^4.0.5",
|
package/vite-plugin.js
DELETED
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
//
|
|
2
|
-
// Copyright 2021 DXOS.org
|
|
3
|
-
//
|
|
4
|
-
|
|
5
|
-
// Not included in the main `index.ts` so that the apps are not bundled with it.
|
|
6
|
-
// It contains native Node functionality so must not be included in the final app bundle, only during compilation/bundling.
|
|
7
|
-
|
|
8
|
-
module.exports = require('./dist/plugin/node/vite-plugin.cjs');
|