This commit is contained in:
Philipp Kunz 2016-11-20 12:35:46 +01:00
commit 3f307e1a81
6 changed files with 102 additions and 0 deletions

59
.gitlab-ci.yml Normal file
View File

@ -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

15
README.md Normal file
View File

@ -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"
})
```

View File

@ -0,0 +1,2 @@
{
}

0
coverage/lcov.info Normal file
View File

23
package.json Normal file
View File

@ -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"
}

3
tslint.json Normal file
View File

@ -0,0 +1,3 @@
{
"extends": "tslint-config-standard"
}