This commit is contained in:
Philipp Kunz 2016-06-19 17:33:54 +02:00
commit 253eb0a3ab
11 changed files with 95 additions and 0 deletions

3
.gitignore vendored Normal file
View File

@ -0,0 +1,3 @@
node_modules/
coverage/
docs/

35
.gitlab-ci.yml Normal file
View File

@ -0,0 +1,35 @@
image: hosttoday/ht-docker-node:npmts
stages:
- test
- release
testLEGACY:
stage: test
script:
- npmci test lts
tags:
- docker
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

4
.npmignore Normal file
View File

@ -0,0 +1,4 @@
node_modules/
coverage/
docs/

0
dist/index.d.ts vendored Normal file
View File

3
dist/index.js vendored Normal file
View File

@ -0,0 +1,3 @@
//# sourceMappingURL=data:application/json;charset=utf8;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IiIsImZpbGUiOiJpbmRleC5qcyIsInNvdXJjZXNDb250ZW50IjpbXX0=

3
dist/qenv.plugins.d.ts vendored Normal file
View File

@ -0,0 +1,3 @@
import "typings-global";
export import beautylog = require("beautylog");
export import smartfile = require("smartfile");

6
dist/qenv.plugins.js vendored Normal file
View File

@ -0,0 +1,6 @@
"use strict";
require("typings-global");
exports.beautylog = require("beautylog");
exports.smartfile = require("smartfile");
//# sourceMappingURL=data:application/json;charset=utf8;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbInFlbnYucGx1Z2lucy50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiO0FBQUEsUUFBTyxnQkFBZ0IsQ0FBQyxDQUFBO0FBQ1YsaUJBQVMsV0FBVyxXQUFXLENBQUMsQ0FBQztBQUNqQyxpQkFBUyxXQUFXLFdBQVcsQ0FBQyxDQUFDIiwiZmlsZSI6InFlbnYucGx1Z2lucy5qcyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCBcInR5cGluZ3MtZ2xvYmFsXCI7XG5leHBvcnQgaW1wb3J0IGJlYXV0eWxvZyA9IHJlcXVpcmUoXCJiZWF1dHlsb2dcIik7XG5leHBvcnQgaW1wb3J0IHNtYXJ0ZmlsZSA9IHJlcXVpcmUoXCJzbWFydGZpbGVcIik7XG4iXX0=

3
npmts.json Normal file
View File

@ -0,0 +1,3 @@
{
"mode":"default"
}

35
package.json Normal file
View File

@ -0,0 +1,35 @@
{
"name": "qenv",
"version": "1.0.0",
"description": "smart handling of environment variables",
"main": "dist/index.js",
"scripts": {
"test": "(npmts)"
},
"repository": {
"type": "git",
"url": "git+ssh://git@gitlab.com/pushrocks/qenv.git"
},
"keywords": [
"environment",
"git",
"ci"
],
"author": "Lossless GmbH",
"license": "MIT",
"bugs": {
"url": "https://gitlab.com/pushrocks/qenv/issues"
},
"homepage": "https://gitlab.com/pushrocks/qenv#README",
"devDependencies": {
"npmts-g": "^5.2.6",
"should": "^9.0.2",
"typings-test": "^1.0.1"
},
"dependencies": {
"beautylog": "^5.0.12",
"q": "^1.4.1",
"smartfile": "^3.0.10",
"typings-global": "^1.0.3"
}
}

0
ts/index.ts Normal file
View File

3
ts/qenv.plugins.ts Normal file
View File

@ -0,0 +1,3 @@
import "typings-global";
export import beautylog = require("beautylog");
export import smartfile = require("smartfile");