dcp-client 4.2.27 → 4.2.28
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/bin/build-dcp-config +7 -4
- package/dcp-client.js +4 -16
- package/dist/dcp-client-bundle.js +6109 -3
- package/docs/CODEOWNERS +57 -1
- package/docs/CODEOWNERS.template +10 -0
- package/index.js +499 -409
- package/lib/standaloneWorker.js +17 -10
- package/ns-map.js +0 -19
- package/package.json +6 -3
- package/test-pseudo-root/home/username/.dcp/dcp-config.js +2 -0
- package/windows-registry.js +14 -58
- /package/etc/{dcp-config.js → deprecated-dcp-config.js} +0 -0
package/docs/CODEOWNERS
CHANGED
|
@@ -9,4 +9,60 @@
|
|
|
9
9
|
# Username mapping:
|
|
10
10
|
# @wesgarland -> Wes Garland <wes@distributive.network>
|
|
11
11
|
|
|
12
|
-
|
|
12
|
+
|
|
13
|
+
[]
|
|
14
|
+
|
|
15
|
+
[Brandon]
|
|
16
|
+
|
|
17
|
+
[Eddie]
|
|
18
|
+
/package-lock.json @eroosenmaallen
|
|
19
|
+
|
|
20
|
+
[Eddie or Wes]
|
|
21
|
+
/dist/dcp-client-bundle.js @eroosenmaallen @wesgarland
|
|
22
|
+
|
|
23
|
+
[Wes]
|
|
24
|
+
/ns-map.js @wesgarland
|
|
25
|
+
/lib/ @wesgarland
|
|
26
|
+
/README.md @wesgarland
|
|
27
|
+
/.npmrc @wesgarland
|
|
28
|
+
/dist/ @wesgarland
|
|
29
|
+
/favicon.ico @wesgarland
|
|
30
|
+
/etc/ @wesgarland
|
|
31
|
+
/test-pseudo-root/ @wesgarland
|
|
32
|
+
/windows-registry.js @wesgarland
|
|
33
|
+
/dcp-client.css @wesgarland
|
|
34
|
+
/assets/ @wesgarland
|
|
35
|
+
/build/ @wesgarland
|
|
36
|
+
/tests/ @wesgarland
|
|
37
|
+
/.npmignore @wesgarland
|
|
38
|
+
/bin/ @wesgarland
|
|
39
|
+
/.eslintrc.json @wesgarland
|
|
40
|
+
/index.js @wesgarland
|
|
41
|
+
/libexec/ @wesgarland
|
|
42
|
+
/.tidelift @wesgarland
|
|
43
|
+
/LICENSE.md @wesgarland
|
|
44
|
+
/docs/ @wesgarland
|
|
45
|
+
/cors-proxy.html @wesgarland
|
|
46
|
+
/.gitlab-ci.yml @wesgarland
|
|
47
|
+
/.gitignore @wesgarland
|
|
48
|
+
/init-common.js @wesgarland
|
|
49
|
+
/dcp-client.js @wesgarland
|
|
50
|
+
/cjs2-shim.js @wesgarland
|
|
51
|
+
/examples/ @wesgarland
|
|
52
|
+
/templates/ @wesgarland
|
|
53
|
+
/generated/ @wesgarland
|
|
54
|
+
/templates/ @wesgarland
|
|
55
|
+
/assets/ @wesgarland
|
|
56
|
+
/test-pseudo-root/ @wesgarland
|
|
57
|
+
/etc/ @wesgarland
|
|
58
|
+
/examples/ @wesgarland
|
|
59
|
+
/tests/ @wesgarland
|
|
60
|
+
/build/ @wesgarland
|
|
61
|
+
/docs/ @wesgarland
|
|
62
|
+
/lib/ @wesgarland
|
|
63
|
+
/libexec/ @wesgarland
|
|
64
|
+
/dist/ @wesgarland
|
|
65
|
+
/bin/ @wesgarland
|
|
66
|
+
|
|
67
|
+
[Wes or Eddie]
|
|
68
|
+
/package.json @wesgarland @eroosenmaallen
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
# @file CODEOWNERS - Defines who develops and maintains a feature, and own
|
|
2
|
+
# the resulting files or directories in the repository.
|
|
3
|
+
#
|
|
4
|
+
# See https://docs.gitlab.com/ee/user/project/code_owners.html
|
|
5
|
+
#
|
|
6
|
+
# @author Bryan Hoang <bryan@distributive.network>
|
|
7
|
+
# @date August 2022
|
|
8
|
+
|
|
9
|
+
# Username mapping:
|
|
10
|
+
# @wesgarland -> Wes Garland <wes@distributive.network>
|