tsds-lib-test 1.13.14 → 1.13.15
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/README.md +2 -26
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -1,27 +1,3 @@
|
|
|
1
|
-
##
|
|
1
|
+
## tsds-lib-test
|
|
2
2
|
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
For an example, check out [parser-multipart](https://github.com/kmalakoff/parser-multipart)
|
|
6
|
-
|
|
7
|
-
# Example 1: CLI
|
|
8
|
-
|
|
9
|
-
```
|
|
10
|
-
# build
|
|
11
|
-
$ npm run build
|
|
12
|
-
|
|
13
|
-
# run coverage tests (default on "test/**/*.test.*" only) using c8
|
|
14
|
-
$ tsds coverage
|
|
15
|
-
|
|
16
|
-
# deploy library using np
|
|
17
|
-
$ tsds deploy
|
|
18
|
-
|
|
19
|
-
# format library using prettier
|
|
20
|
-
$ tsds format
|
|
21
|
-
|
|
22
|
-
# run tests on current version of node
|
|
23
|
-
$ tsds test:node
|
|
24
|
-
|
|
25
|
-
# run tests on browser only
|
|
26
|
-
$ tsds test:browser
|
|
27
|
-
```
|
|
3
|
+
For usage, see [ts-dev-stack](https://www.npmjs.com/package/ts-dev-stack)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "tsds-lib-test",
|
|
3
|
-
"version": "1.13.
|
|
3
|
+
"version": "1.13.15",
|
|
4
4
|
"description": "Development stack for TypeScript libraries",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"dev",
|
|
@@ -39,12 +39,12 @@
|
|
|
39
39
|
"dependencies": {
|
|
40
40
|
"cross-spawn-cb": "^2.1.6",
|
|
41
41
|
"mkdirp-classic": "^0.5.3",
|
|
42
|
-
"queue-cb": "^1.4.
|
|
42
|
+
"queue-cb": "^1.4.13",
|
|
43
43
|
"rimraf2": "^2.8.2"
|
|
44
44
|
},
|
|
45
45
|
"devDependencies": {
|
|
46
|
-
"@types/mocha": "
|
|
47
|
-
"@types/node": "
|
|
46
|
+
"@types/mocha": "*",
|
|
47
|
+
"@types/node": "*"
|
|
48
48
|
},
|
|
49
49
|
"engines": {
|
|
50
50
|
"node": ">=0.8"
|