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" key: "$CI_BUILD_STAGE"
stages: stages:
- mirror
- security - security
- test - test
- release - release
@ -15,13 +14,13 @@ stages:
- pages - pages
mirror: mirror:
stage: mirror stage: security
script: script:
- npmci git mirror - npmci git mirror
tags: tags:
- docker - docker
security: snyk:
stage: security stage: security
script: script:
- npmci command yarn global add snyk - npmci command yarn global add snyk

View File

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

View File

@ -1,8 +1,8 @@
import { expect, tap } from 'tapbundle' import { expect, tap } from 'tapbundle';
import * as beautyfiglet from '../ts/index' import * as beautyfiglet from '../ts/index';
tap.test('first test', async () => { 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 = {}; const removeme = {};
export { export { removeme };
removeme
}