@sports-alliance/sports-lib 7.0.6 → 7.0.7
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/.vscode/launch.json +49 -0
- package/.vscode/tasks.json +34 -0
- package/lib/cjs/package.json +1 -0
- package/lib/cjs/specs/fixtures/streams/strava/rides/3171472783.json +52534 -0
- package/lib/cjs/specs/fixtures/streams/strava/rides/3171487458.json +78818 -0
- package/lib/cjs/specs/fixtures/streams/strava/rides/343080886.json +105090 -0
- package/lib/cjs/specs/fixtures/streams/strava/rides/5910143591.json +110711 -0
- package/lib/cjs/specs/fixtures/streams/strava/runs/2451375851.json +74846 -0
- package/lib/cjs/specs/fixtures/streams/strava/runs/2709634581.json +66817 -0
- package/lib/cjs/specs/fixtures/streams/strava/runs/3156040843.json +17594 -0
- package/lib/cjs/specs/fixtures/streams/strava/runs/3182900697.json +17322 -0
- package/lib/cjs/specs/fixtures/streams/strava/runs/3183465494.json +20463 -0
- package/lib/cjs/specs/fixtures/streams/strava/runs/3183490558.json +58202 -0
- package/lib/esm/package.json +1 -0
- package/lib/esm/specs/fixtures/streams/strava/rides/3171472783.json +52534 -0
- package/lib/esm/specs/fixtures/streams/strava/rides/3171487458.json +78818 -0
- package/lib/esm/specs/fixtures/streams/strava/rides/343080886.json +105090 -0
- package/lib/esm/specs/fixtures/streams/strava/rides/5910143591.json +110711 -0
- package/lib/esm/specs/fixtures/streams/strava/runs/2451375851.json +74846 -0
- package/lib/esm/specs/fixtures/streams/strava/runs/2709634581.json +66817 -0
- package/lib/esm/specs/fixtures/streams/strava/runs/3156040843.json +17594 -0
- package/lib/esm/specs/fixtures/streams/strava/runs/3182900697.json +17322 -0
- package/lib/esm/specs/fixtures/streams/strava/runs/3183465494.json +20463 -0
- package/lib/esm/specs/fixtures/streams/strava/runs/3183490558.json +58202 -0
- package/package.json +2 -2
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": "0.2.0",
|
|
3
|
+
"configurations": [
|
|
4
|
+
{
|
|
5
|
+
"name": "Run Watch Mode",
|
|
6
|
+
"type": "node",
|
|
7
|
+
"request": "launch",
|
|
8
|
+
"runtimeExecutable": "npm",
|
|
9
|
+
"runtimeArgs": [
|
|
10
|
+
"run",
|
|
11
|
+
"watch"
|
|
12
|
+
],
|
|
13
|
+
"console": "integratedTerminal"
|
|
14
|
+
},
|
|
15
|
+
{
|
|
16
|
+
"type": "pwa-node",
|
|
17
|
+
"request": "launch",
|
|
18
|
+
"name": "Debug Jest Tests",
|
|
19
|
+
"program": "${workspaceFolder}/node_modules/.bin/jest",
|
|
20
|
+
"args": [
|
|
21
|
+
"--runInBand",
|
|
22
|
+
"--watchAll=false"
|
|
23
|
+
],
|
|
24
|
+
"console": "integratedTerminal",
|
|
25
|
+
"internalConsoleOptions": "neverOpen",
|
|
26
|
+
"disableOptimisticBPs": true,
|
|
27
|
+
"windows": {
|
|
28
|
+
"program": "${workspaceFolder}/node_modules/jest/bin/jest.js"
|
|
29
|
+
}
|
|
30
|
+
},
|
|
31
|
+
{
|
|
32
|
+
"type": "pwa-node",
|
|
33
|
+
"request": "launch",
|
|
34
|
+
"name": "Debug Current Test File",
|
|
35
|
+
"program": "${workspaceFolder}/node_modules/.bin/jest",
|
|
36
|
+
"args": [
|
|
37
|
+
"${fileBasenameNoExtension}",
|
|
38
|
+
"--runInBand",
|
|
39
|
+
"--watchAll=false"
|
|
40
|
+
],
|
|
41
|
+
"console": "integratedTerminal",
|
|
42
|
+
"internalConsoleOptions": "neverOpen",
|
|
43
|
+
"disableOptimisticBPs": true,
|
|
44
|
+
"windows": {
|
|
45
|
+
"program": "${workspaceFolder}/node_modules/jest/bin/jest.js"
|
|
46
|
+
}
|
|
47
|
+
}
|
|
48
|
+
]
|
|
49
|
+
}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": "2.0.0",
|
|
3
|
+
"tasks": [
|
|
4
|
+
{
|
|
5
|
+
"type": "npm",
|
|
6
|
+
"script": "build",
|
|
7
|
+
"group": "build",
|
|
8
|
+
"problemMatcher": [],
|
|
9
|
+
"label": "npm: build",
|
|
10
|
+
"detail": "npm run clean && tsc --project tsconfig.lib.json"
|
|
11
|
+
},
|
|
12
|
+
{
|
|
13
|
+
"type": "npm",
|
|
14
|
+
"script": "watch",
|
|
15
|
+
"group": "build",
|
|
16
|
+
"isBackground": true,
|
|
17
|
+
"problemMatcher": {
|
|
18
|
+
"owner": "typescript",
|
|
19
|
+
"pattern": "$tsc",
|
|
20
|
+
"background": {
|
|
21
|
+
"activeOnStart": true,
|
|
22
|
+
"beginsPattern": {
|
|
23
|
+
"regexp": "^.*Starting compilation in watch mode.*$"
|
|
24
|
+
},
|
|
25
|
+
"endsPattern": {
|
|
26
|
+
"regexp": "^.*Found [0-9]+ errors.*$"
|
|
27
|
+
}
|
|
28
|
+
}
|
|
29
|
+
},
|
|
30
|
+
"label": "npm: watch",
|
|
31
|
+
"detail": "npm run build -- --watch"
|
|
32
|
+
}
|
|
33
|
+
]
|
|
34
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"type": "commonjs"}
|