Compare commits
9 Commits
Author | SHA1 | Date | |
---|---|---|---|
4e541b7986 | |||
b6cfc24613 | |||
61fb4ef7bb | |||
9afc1b80b5 | |||
1bb67e331b | |||
6e5a7529b0 | |||
bf2e8fd5c6 | |||
eaee03e33f | |||
a464f6d81c |
@ -1,5 +1,10 @@
|
||||
# gitzone standard
|
||||
image: hosttoday/ht-docker-node:npmts
|
||||
image: hosttoday/ht-docker-node:npmci
|
||||
|
||||
cache:
|
||||
paths:
|
||||
- .yarn/
|
||||
key: "$CI_BUILD_STAGE"
|
||||
|
||||
stages:
|
||||
- test
|
||||
@ -51,10 +56,13 @@ trigger:
|
||||
- docker
|
||||
|
||||
pages:
|
||||
image: hosttoday/ht-docker-node:npmpage
|
||||
image: hosttoday/ht-docker-node:npmci
|
||||
stage: pages
|
||||
script:
|
||||
- npmci command yarn global add npmpage
|
||||
- npmci command npmpage --publish gitlab
|
||||
tags:
|
||||
- docker
|
||||
only:
|
||||
- tags
|
||||
artifacts:
|
||||
|
13
README.md
13
README.md
@ -21,6 +21,19 @@ tap bundled for tapbuffer
|
||||
## Usage
|
||||
Use TypeScript for best in class instellisense.
|
||||
|
||||
note this package includes
|
||||
|
||||
* tap
|
||||
* chai
|
||||
* chai-as-promised
|
||||
* @types/tap
|
||||
* @types/chai
|
||||
* @types/chai-as-promised
|
||||
|
||||
```javascript
|
||||
import {tap, expect} from 'tapbundle' // has typings in place
|
||||
```
|
||||
|
||||
For further information read the linked docs at the top of this README.
|
||||
|
||||
> MIT licensed | **©** [Lossless GmbH](https://lossless.gmbh)
|
||||
|
7
npmextra.json
Normal file
7
npmextra.json
Normal file
@ -0,0 +1,7 @@
|
||||
{
|
||||
"npmci": {
|
||||
"globalNpmTools": [
|
||||
"npmts"
|
||||
]
|
||||
}
|
||||
}
|
@ -1,9 +1,9 @@
|
||||
{
|
||||
"name": "tapbundle",
|
||||
"version": "1.0.1",
|
||||
"version": "1.0.5",
|
||||
"description": "tap bundled for tapbuffer",
|
||||
"main": "dist/index.js",
|
||||
"typings": "dsit/index.d.ts",
|
||||
"typings": "dist/index.d.ts",
|
||||
"scripts": {
|
||||
"test": "(npmts)"
|
||||
},
|
||||
|
@ -1,5 +1,5 @@
|
||||
import 'typings-global'
|
||||
import * as tap from 'tap'
|
||||
let tap = require('tap')
|
||||
import { expect } from 'smartchai'
|
||||
|
||||
export {
|
||||
|
Reference in New Issue
Block a user