2 Commits

Author SHA1 Message Date
edf0f69e99 1.0.3 2018-03-05 01:26:30 +01:00
007bb2029d format 2018-03-05 01:26:26 +01:00
4 changed files with 9 additions and 12 deletions

View File

@ -7,7 +7,6 @@ cache:
key: "$CI_BUILD_STAGE"
stages:
- mirror
- security
- test
- release
@ -15,13 +14,13 @@ stages:
- pages
mirror:
stage: mirror
stage: security
script:
- npmci git mirror
tags:
- docker
security:
snyk:
stage: security
script:
- npmci command yarn global add snyk

View File

@ -1,6 +1,6 @@
{
"name": "beautyfiglet",
"version": "1.0.2",
"version": "1.0.3",
"description": "figlet display in nodejs",
"main": "dist/index.js",
"typings": "dist/index.d.ts",

View File

@ -1,8 +1,8 @@
import { expect, tap } from 'tapbundle'
import * as beautyfiglet from '../ts/index'
import { expect, tap } from 'tapbundle';
import * as beautyfiglet from '../ts/index';
tap.test('first test', async () => {
console.log(beautyfiglet.standardExport)
})
console.log(beautyfiglet.standardExport);
});
tap.start()
tap.start();

View File

@ -1,4 +1,2 @@
const removeme = {};
export {
removeme
}
export { removeme };