diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index e22cf48..72d25cc 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -3,7 +3,8 @@ image: hosttoday/ht-docker-node:npmts stages: - test - release -- page +- trigger +- pages testLEGACY: stage: test @@ -11,6 +12,7 @@ testLEGACY: - npmci test legacy tags: - docker + allow_failure: true testLTS: stage: test @@ -29,9 +31,29 @@ testSTABLE: release: stage: release script: - - npmci publish npm + - 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 --publish gitlab + only: + - tags + artifacts: + expire_in: 1 week + paths: + - public diff --git a/README.md b/README.md index a730d66..ea1249e 100644 --- a/README.md +++ b/README.md @@ -1,19 +1,28 @@ # gulp-browser browserify and other goodies for gulp -### Status -[![build status](https://gitlab.com/pushrocks/gulp-browser/badges/master/build.svg)](https://gitlab.com/pushrocks/gulp-browser/commits/master) +## Availabililty +[![npm](https://push.rocks/assets/repo-button-npm.svg)](https://www.npmjs.com/package/gulp-browser) +[![git](https://push.rocks/assets/repo-button-git.svg)](https://GitLab.com/pushrocks/gulp-browser) +[![git](https://push.rocks/assets/repo-button-mirror.svg)](https://github.com/pushrocks/gulp-browser) +[![docs](https://push.rocks/assets/repo-button-docs.svg)](https://pushrocks.gitlab.io/gulp-browser/) + +## Status for master +[![build status](https://GitLab.com/pushrocks/gulp-browser/badges/master/build.svg)](https://GitLab.com/pushrocks/gulp-browser/commits/master) +[![coverage report](https://GitLab.com/pushrocks/gulp-browser/badges/master/coverage.svg)](https://GitLab.com/pushrocks/gulp-browser/commits/master) +[![npm downloads per month](https://img.shields.io/npm/dm/gulp-browser.svg)](https://www.npmjs.com/package/gulp-browser) [![Dependency Status](https://david-dm.org/pushrocks/gulp-browser.svg)](https://david-dm.org/pushrocks/gulp-browser) [![bitHound Dependencies](https://www.bithound.io/github/pushrocks/gulp-browser/badges/dependencies.svg)](https://www.bithound.io/github/pushrocks/gulp-browser/master/dependencies/npm) [![bitHound Code](https://www.bithound.io/github/pushrocks/gulp-browser/badges/code.svg)](https://www.bithound.io/github/pushrocks/gulp-browser) -[![codecov.io](https://codecov.io/github/pushrocks/gulp-browser/coverage.svg?branch=master)](https://codecov.io/github/pushrocks/gulp-browser?branch=master) +[![TypeScript](https://img.shields.io/badge/TypeScript-2.x-blue.svg)](https://nodejs.org/dist/latest-v6.x/docs/api/) [![node](https://img.shields.io/badge/node->=%206.x.x-blue.svg)](https://nodejs.org/dist/latest-v6.x/docs/api/) +[![JavaScript Style Guide](https://img.shields.io/badge/code%20style-standard-brightgreen.svg)](http://standardjs.com/) -### Usage -gulp-browser is meant to be easy: +## Usage +Use TypeScript for best in class instellisense. #### Browserify: -```typescript +```javascript let gulp = require("gulp"); let gulpBrowser = require("gulp-browser"); @@ -34,18 +43,8 @@ gulp-browser is meant to be easy: > **Note:** Be aware of how gulp.src creates values of file.base and file.path since that is important to the require statements. -### Dev Information: -[![devDependency Status](https://david-dm.org/pushrocks/gulp-browser/dev-status.svg)](https://david-dm.org/pushrocks/gulp-browser#info=devDependencies) -[![bitHound Dev Dependencies](https://www.bithound.io/github/pushrocks/gulp-browser/badges/devDependencies.svg)](https://www.bithound.io/github/pushrocks/gulp-browser/master/dependencies/npm) - -### Extending this module -If you have ideas for other great browser related gulp pipe stops, feel free to raise an issue on GitHub. - ### Contributors * [Phil Kunz](https://github.com/philkunz) * [Steffan Donal](https://github.com/SteffanDonal) -### About the maintainer: -[![Project Phase](https://mediaserve.lossless.digital/lossless.com/img/createdby_github.svg)](https://lossless.com/) - -[![PayPal](https://img.shields.io/badge/Support%20us-PayPal-blue.svg)](https://paypal.me/lossless) \ No newline at end of file +[![npm](https://push.rocks/assets/repo-header.svg)](https://push.rocks) diff --git a/package.json b/package.json index 538f96a..9754fdf 100644 --- a/package.json +++ b/package.json @@ -17,7 +17,10 @@ }, "keywords": [ "gulpplugin", - "browserify" + "browserify", + "browser", + "TypeScript", + "typed" ], "author": "Smart Coordination GmbH (https://push.rocks)", "license": "MIT",