commit 3f307e1a81d12231def63d106713f609dba58278 Author: PhilKunz Date: Sun Nov 20 12:35:46 2016 +0100 initial diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..f2d2ff7 --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,59 @@ +image: hosttoday/ht-docker-node:npmts + +stages: +- test +- release +- trigger +- pages + +testLEGACY: + stage: test + script: + - npmci test legacy + tags: + - docker + allow_failure: true + +testLTS: + stage: test + script: + - npmci test lts + tags: + - docker + +testSTABLE: + stage: test + script: + - npmci test stable + tags: + - docker + +release: + stage: release + script: + - npmci publish + only: + - tags + tags: + - docker + +trigger: + stage: trigger + script: + - npmci trigger + only: + - tags + tags: + - docker + +pages: + image: hosttoday/ht-docker-node:npmpage + stage: pages + script: + - npmci command npmpage --host gitlab + only: + - tags + artifacts: + expire_in: 1 week + paths: + - public diff --git a/README.md b/README.md new file mode 100644 index 0000000..0604737 --- /dev/null +++ b/README.md @@ -0,0 +1,15 @@ +# tlt +templates done right + +## Usage +We recommend the use of TypeScript for best in class Intellisense + +```javascript +import * as tlt from 'tlt + +let myTlt = new tlt('my template String for {{somePlaceholder}} and {{anotherPlaceholder}}') +myTlt.getStringFor({ + "somePlaceholder": "pushrocks", + "anotherPlaceholder": "anotherPlaceholder" +}) +``` \ No newline at end of file diff --git a/coverage/coverage-final.json b/coverage/coverage-final.json new file mode 100644 index 0000000..2c63c08 --- /dev/null +++ b/coverage/coverage-final.json @@ -0,0 +1,2 @@ +{ +} diff --git a/coverage/lcov.info b/coverage/lcov.info new file mode 100644 index 0000000..e69de29 diff --git a/package.json b/package.json new file mode 100644 index 0000000..43cfcea --- /dev/null +++ b/package.json @@ -0,0 +1,23 @@ +{ + "name": "tlt", + "version": "1.0.0", + "description": "templates done right", + "main": "dist/index.js", + "typings": "dist/index.d.ts", + "scripts": { + "test": "(npmts)" + }, + "repository": { + "type": "git", + "url": "git+ssh://git@gitlab.com/pushrocks/tlt.git" + }, + "keywords": [ + "template" + ], + "author": "Lossless GmbH", + "license": "MIT", + "bugs": { + "url": "https://gitlab.com/pushrocks/tlt/issues" + }, + "homepage": "https://gitlab.com/pushrocks/tlt#README" +} diff --git a/tslint.json b/tslint.json new file mode 100644 index 0000000..45052ad --- /dev/null +++ b/tslint.json @@ -0,0 +1,3 @@ +{ + "extends": "tslint-config-standard" +}