usage-board 3.1.1 → 3.1.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/dist/index.mjs +1 -1
- package/dist/public/_nuxt/builds/latest.json +1 -1
- package/dist/public/_nuxt/builds/meta/16d9b7dd-abbb-4267-9366-349908b2332a.json +1 -0
- package/dist/server/chunks/nitro/nitro.mjs +57 -57
- package/dist/server/chunks/routes/api/analysis/agent/session.json.mjs +1 -1
- package/dist/server/chunks/routes/api/analysis/agent/token.json.mjs +1 -1
- package/dist/server/chunks/routes/api/analysis/cache.json.mjs +1 -1
- package/dist/server/chunks/routes/api/analysis/hot-project.json.mjs +1 -1
- package/dist/server/chunks/routes/api/analysis/model.json.mjs +1 -1
- package/dist/server/chunks/routes/api/analysis/overview-cards.json.mjs +1 -1
- package/dist/server/chunks/routes/api/analysis/session.json.mjs +1 -1
- package/dist/server/chunks/routes/api/analysis/token/daily.json.mjs +1 -1
- package/dist/server/chunks/routes/api/analysis/token.json.mjs +1 -1
- package/dist/server/chunks/routes/api/payload.json.mjs +1 -1
- package/dist/server/chunks/routes/api/projects/_project/modules.get.mjs +1 -1
- package/dist/server/chunks/routes/api/projects/catalog.get.mjs +1 -1
- package/dist/server/chunks/routes/renderer.mjs +1 -1
- package/dist/server/chunks/routes/ws.mjs +1 -1
- package/dist/server/index.mjs +1 -1
- package/dist/server/package.json +1 -4
- package/package.json +6 -5
- package/dist/public/_nuxt/builds/meta/6f98f1cb-266c-475e-a249-dad346a55f24.json +0 -1
- package/dist/server/node_modules/better-sqlite3/build/Release/better_sqlite3.node +0 -0
- package/dist/server/node_modules/better-sqlite3/lib/database.js +0 -90
- package/dist/server/node_modules/better-sqlite3/lib/index.js +0 -3
- package/dist/server/node_modules/better-sqlite3/lib/methods/aggregate.js +0 -43
- package/dist/server/node_modules/better-sqlite3/lib/methods/backup.js +0 -67
- package/dist/server/node_modules/better-sqlite3/lib/methods/function.js +0 -31
- package/dist/server/node_modules/better-sqlite3/lib/methods/inspect.js +0 -7
- package/dist/server/node_modules/better-sqlite3/lib/methods/pragma.js +0 -12
- package/dist/server/node_modules/better-sqlite3/lib/methods/serialize.js +0 -16
- package/dist/server/node_modules/better-sqlite3/lib/methods/table.js +0 -189
- package/dist/server/node_modules/better-sqlite3/lib/methods/transaction.js +0 -78
- package/dist/server/node_modules/better-sqlite3/lib/methods/wrappers.js +0 -54
- package/dist/server/node_modules/better-sqlite3/lib/sqlite-error.js +0 -20
- package/dist/server/node_modules/better-sqlite3/lib/util.js +0 -12
- package/dist/server/node_modules/better-sqlite3/package.json +0 -59
- package/dist/server/node_modules/bindings/bindings.js +0 -221
- package/dist/server/node_modules/bindings/package.json +0 -28
- package/dist/server/node_modules/file-uri-to-path/index.js +0 -66
- package/dist/server/node_modules/file-uri-to-path/package.json +0 -32
|
@@ -1,221 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Module dependencies.
|
|
3
|
-
*/
|
|
4
|
-
|
|
5
|
-
var fs = require('fs'),
|
|
6
|
-
path = require('path'),
|
|
7
|
-
fileURLToPath = require('file-uri-to-path'),
|
|
8
|
-
join = path.join,
|
|
9
|
-
dirname = path.dirname,
|
|
10
|
-
exists =
|
|
11
|
-
(fs.accessSync &&
|
|
12
|
-
function(path) {
|
|
13
|
-
try {
|
|
14
|
-
fs.accessSync(path);
|
|
15
|
-
} catch (e) {
|
|
16
|
-
return false;
|
|
17
|
-
}
|
|
18
|
-
return true;
|
|
19
|
-
}) ||
|
|
20
|
-
fs.existsSync ||
|
|
21
|
-
path.existsSync,
|
|
22
|
-
defaults = {
|
|
23
|
-
arrow: process.env.NODE_BINDINGS_ARROW || ' → ',
|
|
24
|
-
compiled: process.env.NODE_BINDINGS_COMPILED_DIR || 'compiled',
|
|
25
|
-
platform: process.platform,
|
|
26
|
-
arch: process.arch,
|
|
27
|
-
nodePreGyp:
|
|
28
|
-
'node-v' +
|
|
29
|
-
process.versions.modules +
|
|
30
|
-
'-' +
|
|
31
|
-
process.platform +
|
|
32
|
-
'-' +
|
|
33
|
-
process.arch,
|
|
34
|
-
version: process.versions.node,
|
|
35
|
-
bindings: 'bindings.node',
|
|
36
|
-
try: [
|
|
37
|
-
// node-gyp's linked version in the "build" dir
|
|
38
|
-
['module_root', 'build', 'bindings'],
|
|
39
|
-
// node-waf and gyp_addon (a.k.a node-gyp)
|
|
40
|
-
['module_root', 'build', 'Debug', 'bindings'],
|
|
41
|
-
['module_root', 'build', 'Release', 'bindings'],
|
|
42
|
-
// Debug files, for development (legacy behavior, remove for node v0.9)
|
|
43
|
-
['module_root', 'out', 'Debug', 'bindings'],
|
|
44
|
-
['module_root', 'Debug', 'bindings'],
|
|
45
|
-
// Release files, but manually compiled (legacy behavior, remove for node v0.9)
|
|
46
|
-
['module_root', 'out', 'Release', 'bindings'],
|
|
47
|
-
['module_root', 'Release', 'bindings'],
|
|
48
|
-
// Legacy from node-waf, node <= 0.4.x
|
|
49
|
-
['module_root', 'build', 'default', 'bindings'],
|
|
50
|
-
// Production "Release" buildtype binary (meh...)
|
|
51
|
-
['module_root', 'compiled', 'version', 'platform', 'arch', 'bindings'],
|
|
52
|
-
// node-qbs builds
|
|
53
|
-
['module_root', 'addon-build', 'release', 'install-root', 'bindings'],
|
|
54
|
-
['module_root', 'addon-build', 'debug', 'install-root', 'bindings'],
|
|
55
|
-
['module_root', 'addon-build', 'default', 'install-root', 'bindings'],
|
|
56
|
-
// node-pre-gyp path ./lib/binding/{node_abi}-{platform}-{arch}
|
|
57
|
-
['module_root', 'lib', 'binding', 'nodePreGyp', 'bindings']
|
|
58
|
-
]
|
|
59
|
-
};
|
|
60
|
-
|
|
61
|
-
/**
|
|
62
|
-
* The main `bindings()` function loads the compiled bindings for a given module.
|
|
63
|
-
* It uses V8's Error API to determine the parent filename that this function is
|
|
64
|
-
* being invoked from, which is then used to find the root directory.
|
|
65
|
-
*/
|
|
66
|
-
|
|
67
|
-
function bindings(opts) {
|
|
68
|
-
// Argument surgery
|
|
69
|
-
if (typeof opts == 'string') {
|
|
70
|
-
opts = { bindings: opts };
|
|
71
|
-
} else if (!opts) {
|
|
72
|
-
opts = {};
|
|
73
|
-
}
|
|
74
|
-
|
|
75
|
-
// maps `defaults` onto `opts` object
|
|
76
|
-
Object.keys(defaults).map(function(i) {
|
|
77
|
-
if (!(i in opts)) opts[i] = defaults[i];
|
|
78
|
-
});
|
|
79
|
-
|
|
80
|
-
// Get the module root
|
|
81
|
-
if (!opts.module_root) {
|
|
82
|
-
opts.module_root = exports.getRoot(exports.getFileName());
|
|
83
|
-
}
|
|
84
|
-
|
|
85
|
-
// Ensure the given bindings name ends with .node
|
|
86
|
-
if (path.extname(opts.bindings) != '.node') {
|
|
87
|
-
opts.bindings += '.node';
|
|
88
|
-
}
|
|
89
|
-
|
|
90
|
-
// https://github.com/webpack/webpack/issues/4175#issuecomment-342931035
|
|
91
|
-
var requireFunc =
|
|
92
|
-
typeof __webpack_require__ === 'function'
|
|
93
|
-
? __non_webpack_require__
|
|
94
|
-
: require;
|
|
95
|
-
|
|
96
|
-
var tries = [],
|
|
97
|
-
i = 0,
|
|
98
|
-
l = opts.try.length,
|
|
99
|
-
n,
|
|
100
|
-
b,
|
|
101
|
-
err;
|
|
102
|
-
|
|
103
|
-
for (; i < l; i++) {
|
|
104
|
-
n = join.apply(
|
|
105
|
-
null,
|
|
106
|
-
opts.try[i].map(function(p) {
|
|
107
|
-
return opts[p] || p;
|
|
108
|
-
})
|
|
109
|
-
);
|
|
110
|
-
tries.push(n);
|
|
111
|
-
try {
|
|
112
|
-
b = opts.path ? requireFunc.resolve(n) : requireFunc(n);
|
|
113
|
-
if (!opts.path) {
|
|
114
|
-
b.path = n;
|
|
115
|
-
}
|
|
116
|
-
return b;
|
|
117
|
-
} catch (e) {
|
|
118
|
-
if (e.code !== 'MODULE_NOT_FOUND' &&
|
|
119
|
-
e.code !== 'QUALIFIED_PATH_RESOLUTION_FAILED' &&
|
|
120
|
-
!/not find/i.test(e.message)) {
|
|
121
|
-
throw e;
|
|
122
|
-
}
|
|
123
|
-
}
|
|
124
|
-
}
|
|
125
|
-
|
|
126
|
-
err = new Error(
|
|
127
|
-
'Could not locate the bindings file. Tried:\n' +
|
|
128
|
-
tries
|
|
129
|
-
.map(function(a) {
|
|
130
|
-
return opts.arrow + a;
|
|
131
|
-
})
|
|
132
|
-
.join('\n')
|
|
133
|
-
);
|
|
134
|
-
err.tries = tries;
|
|
135
|
-
throw err;
|
|
136
|
-
}
|
|
137
|
-
module.exports = exports = bindings;
|
|
138
|
-
|
|
139
|
-
/**
|
|
140
|
-
* Gets the filename of the JavaScript file that invokes this function.
|
|
141
|
-
* Used to help find the root directory of a module.
|
|
142
|
-
* Optionally accepts an filename argument to skip when searching for the invoking filename
|
|
143
|
-
*/
|
|
144
|
-
|
|
145
|
-
exports.getFileName = function getFileName(calling_file) {
|
|
146
|
-
var origPST = Error.prepareStackTrace,
|
|
147
|
-
origSTL = Error.stackTraceLimit,
|
|
148
|
-
dummy = {},
|
|
149
|
-
fileName;
|
|
150
|
-
|
|
151
|
-
Error.stackTraceLimit = 10;
|
|
152
|
-
|
|
153
|
-
Error.prepareStackTrace = function(e, st) {
|
|
154
|
-
for (var i = 0, l = st.length; i < l; i++) {
|
|
155
|
-
fileName = st[i].getFileName();
|
|
156
|
-
if (fileName !== __filename) {
|
|
157
|
-
if (calling_file) {
|
|
158
|
-
if (fileName !== calling_file) {
|
|
159
|
-
return;
|
|
160
|
-
}
|
|
161
|
-
} else {
|
|
162
|
-
return;
|
|
163
|
-
}
|
|
164
|
-
}
|
|
165
|
-
}
|
|
166
|
-
};
|
|
167
|
-
|
|
168
|
-
// run the 'prepareStackTrace' function above
|
|
169
|
-
Error.captureStackTrace(dummy);
|
|
170
|
-
dummy.stack;
|
|
171
|
-
|
|
172
|
-
// cleanup
|
|
173
|
-
Error.prepareStackTrace = origPST;
|
|
174
|
-
Error.stackTraceLimit = origSTL;
|
|
175
|
-
|
|
176
|
-
// handle filename that starts with "file://"
|
|
177
|
-
var fileSchema = 'file://';
|
|
178
|
-
if (fileName.indexOf(fileSchema) === 0) {
|
|
179
|
-
fileName = fileURLToPath(fileName);
|
|
180
|
-
}
|
|
181
|
-
|
|
182
|
-
return fileName;
|
|
183
|
-
};
|
|
184
|
-
|
|
185
|
-
/**
|
|
186
|
-
* Gets the root directory of a module, given an arbitrary filename
|
|
187
|
-
* somewhere in the module tree. The "root directory" is the directory
|
|
188
|
-
* containing the `package.json` file.
|
|
189
|
-
*
|
|
190
|
-
* In: /home/nate/node-native-module/lib/index.js
|
|
191
|
-
* Out: /home/nate/node-native-module
|
|
192
|
-
*/
|
|
193
|
-
|
|
194
|
-
exports.getRoot = function getRoot(file) {
|
|
195
|
-
var dir = dirname(file),
|
|
196
|
-
prev;
|
|
197
|
-
while (true) {
|
|
198
|
-
if (dir === '.') {
|
|
199
|
-
// Avoids an infinite loop in rare cases, like the REPL
|
|
200
|
-
dir = process.cwd();
|
|
201
|
-
}
|
|
202
|
-
if (
|
|
203
|
-
exists(join(dir, 'package.json')) ||
|
|
204
|
-
exists(join(dir, 'node_modules'))
|
|
205
|
-
) {
|
|
206
|
-
// Found the 'package.json' file or 'node_modules' dir; we're done
|
|
207
|
-
return dir;
|
|
208
|
-
}
|
|
209
|
-
if (prev === dir) {
|
|
210
|
-
// Got to the top
|
|
211
|
-
throw new Error(
|
|
212
|
-
'Could not find module root given file: "' +
|
|
213
|
-
file +
|
|
214
|
-
'". Do you have a `package.json` file? '
|
|
215
|
-
);
|
|
216
|
-
}
|
|
217
|
-
// Try the parent dir next
|
|
218
|
-
prev = dir;
|
|
219
|
-
dir = join(dir, '..');
|
|
220
|
-
}
|
|
221
|
-
};
|
|
@@ -1,28 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "bindings",
|
|
3
|
-
"description": "Helper module for loading your native module's .node file",
|
|
4
|
-
"keywords": [
|
|
5
|
-
"native",
|
|
6
|
-
"addon",
|
|
7
|
-
"bindings",
|
|
8
|
-
"gyp",
|
|
9
|
-
"waf",
|
|
10
|
-
"c",
|
|
11
|
-
"c++"
|
|
12
|
-
],
|
|
13
|
-
"version": "1.5.0",
|
|
14
|
-
"author": "Nathan Rajlich <nathan@tootallnate.net> (http://tootallnate.net)",
|
|
15
|
-
"repository": {
|
|
16
|
-
"type": "git",
|
|
17
|
-
"url": "git://github.com/TooTallNate/node-bindings.git"
|
|
18
|
-
},
|
|
19
|
-
"main": "./bindings.js",
|
|
20
|
-
"bugs": {
|
|
21
|
-
"url": "https://github.com/TooTallNate/node-bindings/issues"
|
|
22
|
-
},
|
|
23
|
-
"homepage": "https://github.com/TooTallNate/node-bindings",
|
|
24
|
-
"license": "MIT",
|
|
25
|
-
"dependencies": {
|
|
26
|
-
"file-uri-to-path": "1.0.0"
|
|
27
|
-
}
|
|
28
|
-
}
|
|
@@ -1,66 +0,0 @@
|
|
|
1
|
-
|
|
2
|
-
/**
|
|
3
|
-
* Module dependencies.
|
|
4
|
-
*/
|
|
5
|
-
|
|
6
|
-
var sep = require('path').sep || '/';
|
|
7
|
-
|
|
8
|
-
/**
|
|
9
|
-
* Module exports.
|
|
10
|
-
*/
|
|
11
|
-
|
|
12
|
-
module.exports = fileUriToPath;
|
|
13
|
-
|
|
14
|
-
/**
|
|
15
|
-
* File URI to Path function.
|
|
16
|
-
*
|
|
17
|
-
* @param {String} uri
|
|
18
|
-
* @return {String} path
|
|
19
|
-
* @api public
|
|
20
|
-
*/
|
|
21
|
-
|
|
22
|
-
function fileUriToPath (uri) {
|
|
23
|
-
if ('string' != typeof uri ||
|
|
24
|
-
uri.length <= 7 ||
|
|
25
|
-
'file://' != uri.substring(0, 7)) {
|
|
26
|
-
throw new TypeError('must pass in a file:// URI to convert to a file path');
|
|
27
|
-
}
|
|
28
|
-
|
|
29
|
-
var rest = decodeURI(uri.substring(7));
|
|
30
|
-
var firstSlash = rest.indexOf('/');
|
|
31
|
-
var host = rest.substring(0, firstSlash);
|
|
32
|
-
var path = rest.substring(firstSlash + 1);
|
|
33
|
-
|
|
34
|
-
// 2. Scheme Definition
|
|
35
|
-
// As a special case, <host> can be the string "localhost" or the empty
|
|
36
|
-
// string; this is interpreted as "the machine from which the URL is
|
|
37
|
-
// being interpreted".
|
|
38
|
-
if ('localhost' == host) host = '';
|
|
39
|
-
|
|
40
|
-
if (host) {
|
|
41
|
-
host = sep + sep + host;
|
|
42
|
-
}
|
|
43
|
-
|
|
44
|
-
// 3.2 Drives, drive letters, mount points, file system root
|
|
45
|
-
// Drive letters are mapped into the top of a file URI in various ways,
|
|
46
|
-
// depending on the implementation; some applications substitute
|
|
47
|
-
// vertical bar ("|") for the colon after the drive letter, yielding
|
|
48
|
-
// "file:///c|/tmp/test.txt". In some cases, the colon is left
|
|
49
|
-
// unchanged, as in "file:///c:/tmp/test.txt". In other cases, the
|
|
50
|
-
// colon is simply omitted, as in "file:///c/tmp/test.txt".
|
|
51
|
-
path = path.replace(/^(.+)\|/, '$1:');
|
|
52
|
-
|
|
53
|
-
// for Windows, we need to invert the path separators from what a URI uses
|
|
54
|
-
if (sep == '\\') {
|
|
55
|
-
path = path.replace(/\//g, '\\');
|
|
56
|
-
}
|
|
57
|
-
|
|
58
|
-
if (/^.+\:/.test(path)) {
|
|
59
|
-
// has Windows drive at beginning of path
|
|
60
|
-
} else {
|
|
61
|
-
// unix path…
|
|
62
|
-
path = sep + path;
|
|
63
|
-
}
|
|
64
|
-
|
|
65
|
-
return host + path;
|
|
66
|
-
}
|
|
@@ -1,32 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "file-uri-to-path",
|
|
3
|
-
"version": "1.0.0",
|
|
4
|
-
"description": "Convert a file: URI to a file path",
|
|
5
|
-
"main": "index.js",
|
|
6
|
-
"types": "index.d.ts",
|
|
7
|
-
"directories": {
|
|
8
|
-
"test": "test"
|
|
9
|
-
},
|
|
10
|
-
"scripts": {
|
|
11
|
-
"test": "mocha --reporter spec"
|
|
12
|
-
},
|
|
13
|
-
"repository": {
|
|
14
|
-
"type": "git",
|
|
15
|
-
"url": "git://github.com/TooTallNate/file-uri-to-path.git"
|
|
16
|
-
},
|
|
17
|
-
"keywords": [
|
|
18
|
-
"file",
|
|
19
|
-
"uri",
|
|
20
|
-
"convert",
|
|
21
|
-
"path"
|
|
22
|
-
],
|
|
23
|
-
"author": "Nathan Rajlich <nathan@tootallnate.net> (http://n8.io/)",
|
|
24
|
-
"license": "MIT",
|
|
25
|
-
"bugs": {
|
|
26
|
-
"url": "https://github.com/TooTallNate/file-uri-to-path/issues"
|
|
27
|
-
},
|
|
28
|
-
"homepage": "https://github.com/TooTallNate/file-uri-to-path",
|
|
29
|
-
"devDependencies": {
|
|
30
|
-
"mocha": "3"
|
|
31
|
-
}
|
|
32
|
-
}
|