@calcit/procs 0.6.11 → 0.6.13
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/calcit.procs.mjs +1 -1
- package/package.json +1 -1
- package/ts-src/calcit.procs.mts +1 -1
- package/.vscode/launch.json +0 -101
- package/.vscode/settings.json +0 -3
package/lib/calcit.procs.mjs
CHANGED
package/package.json
CHANGED
package/ts-src/calcit.procs.mts
CHANGED
package/.vscode/launch.json
DELETED
|
@@ -1,101 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
// Use IntelliSense to learn about possible attributes.
|
|
3
|
-
// Hover to view descriptions of existing attributes.
|
|
4
|
-
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
|
|
5
|
-
"version": "0.2.0",
|
|
6
|
-
"configurations": [
|
|
7
|
-
{
|
|
8
|
-
"type": "lldb",
|
|
9
|
-
"request": "launch",
|
|
10
|
-
"name": "Debug unit tests in library 'calcit'",
|
|
11
|
-
"cargo": {
|
|
12
|
-
"args": [
|
|
13
|
-
"test",
|
|
14
|
-
"--no-run",
|
|
15
|
-
"--lib",
|
|
16
|
-
"--package=calcit"
|
|
17
|
-
],
|
|
18
|
-
"filter": {
|
|
19
|
-
"name": "calcit",
|
|
20
|
-
"kind": "lib"
|
|
21
|
-
}
|
|
22
|
-
},
|
|
23
|
-
"args": [],
|
|
24
|
-
"cwd": "${workspaceFolder}"
|
|
25
|
-
},
|
|
26
|
-
{
|
|
27
|
-
"type": "lldb",
|
|
28
|
-
"request": "launch",
|
|
29
|
-
"name": "Debug executable 'cr'",
|
|
30
|
-
"cargo": {
|
|
31
|
-
"args": [
|
|
32
|
-
"build",
|
|
33
|
-
"--bin=cr",
|
|
34
|
-
"--package=calcit"
|
|
35
|
-
],
|
|
36
|
-
"filter": {
|
|
37
|
-
"name": "cr",
|
|
38
|
-
"kind": "bin"
|
|
39
|
-
}
|
|
40
|
-
},
|
|
41
|
-
"args": [],
|
|
42
|
-
"cwd": "${workspaceFolder}"
|
|
43
|
-
},
|
|
44
|
-
{
|
|
45
|
-
"type": "lldb",
|
|
46
|
-
"request": "launch",
|
|
47
|
-
"name": "Debug unit tests in executable 'cr'",
|
|
48
|
-
"cargo": {
|
|
49
|
-
"args": [
|
|
50
|
-
"test",
|
|
51
|
-
"--no-run",
|
|
52
|
-
"--bin=cr",
|
|
53
|
-
"--package=calcit"
|
|
54
|
-
],
|
|
55
|
-
"filter": {
|
|
56
|
-
"name": "cr",
|
|
57
|
-
"kind": "bin"
|
|
58
|
-
}
|
|
59
|
-
},
|
|
60
|
-
"args": [],
|
|
61
|
-
"cwd": "${workspaceFolder}"
|
|
62
|
-
},
|
|
63
|
-
{
|
|
64
|
-
"type": "lldb",
|
|
65
|
-
"request": "launch",
|
|
66
|
-
"name": "Debug executable 'bundle_calcit'",
|
|
67
|
-
"cargo": {
|
|
68
|
-
"args": [
|
|
69
|
-
"build",
|
|
70
|
-
"--bin=bundle_calcit",
|
|
71
|
-
"--package=calcit"
|
|
72
|
-
],
|
|
73
|
-
"filter": {
|
|
74
|
-
"name": "bundle_calcit",
|
|
75
|
-
"kind": "bin"
|
|
76
|
-
}
|
|
77
|
-
},
|
|
78
|
-
"args": [],
|
|
79
|
-
"cwd": "${workspaceFolder}"
|
|
80
|
-
},
|
|
81
|
-
{
|
|
82
|
-
"type": "lldb",
|
|
83
|
-
"request": "launch",
|
|
84
|
-
"name": "Debug unit tests in executable 'bundle_calcit'",
|
|
85
|
-
"cargo": {
|
|
86
|
-
"args": [
|
|
87
|
-
"test",
|
|
88
|
-
"--no-run",
|
|
89
|
-
"--bin=bundle_calcit",
|
|
90
|
-
"--package=calcit"
|
|
91
|
-
],
|
|
92
|
-
"filter": {
|
|
93
|
-
"name": "bundle_calcit",
|
|
94
|
-
"kind": "bin"
|
|
95
|
-
}
|
|
96
|
-
},
|
|
97
|
-
"args": [],
|
|
98
|
-
"cwd": "${workspaceFolder}"
|
|
99
|
-
}
|
|
100
|
-
]
|
|
101
|
-
}
|
package/.vscode/settings.json
DELETED