Skip to content

Commit 701ffe4

Browse files
author
Dimitri Kopriwa
committed
fix(dependencies): upgrade all dependencies
1 parent 8fa8a06 commit 701ffe4

File tree

13 files changed

+97
-78
lines changed

13 files changed

+97
-78
lines changed

docs/branches.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
1. `master` is used to release the version.
2+
1. `master` only accept merge requests from `dev`

docs/commands.md

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -57,9 +57,3 @@ Build documentation in `/public` directory:
5757
```bash
5858
$ npm run styleguide:build
5959
```
60-
61-
Build the JSdoc documentation
62-
63-
```bash
64-
$ npm run jsdoc
65-
```

docs/configuration.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
You can pass the version you want to deploy to the script:
2+
3+
```bash
4+
$ npx $PACKAGE_NAME --target-version ${releaseVersion}
5+
```
6+
7+
You can tell the script to use `yarn` for installation:
8+
9+
```bash
10+
$ npx $PACKAGE_NAME --yarn
11+
```

docs/faq.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

docs/getting-started.md

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
@yeutech/rollup-umd-ci-deploy contain the job deploy stage for all rollup-umd project.
2+
3+
You can run the deploy stage by doing:
4+
5+
```bash
6+
$ npx $PACKAGE_NAME
7+
```
8+
9+
It should be installed as a `devDependencies` so we can follow the version used by the rollup-umd project.
10+
11+
It is also automatically removed if the package goes public.
12+
13+
To use it, just use the script within your `.gitlab-ci.yml`:
14+
15+
16+
```yml
17+
# Pages
18+
pages:
19+
stage: deploy
20+
script:
21+
- npx $PACKAGE_NAME
22+
artifacts:
23+
paths:
24+
- public
25+
only:
26+
- tags
27+
tags:
28+
- docker
29+
```
30+
31+
If it exist, it will call `styleguide/prepare.sh` within your project to do build operation of your documentation.

docs/installation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
```bash
2-
$ npm install @yeutech/rollup-umd --save
2+
$ npm install $PACKAGE_NAME --save-dev
33
```

docs/introduction.md

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
1-
[![Build Status](https://travis-ci.org/rollup-umd/deploy.svg?branch=master)](https://travis-ci.org/rollup-umd/deploy)
2-
[![npm Version](https://img.shields.io/npm/v/@rollup-umd/deploy.svg?style=flat)](https://www.npmjs.com/package/@rollup-umd/deploy)
3-
[![License](https://img.shields.io/npm/l/@rollup-umd/deploy.svg?style=flat)](https://www.npmjs.com/package/@rollup-umd/deploy)
4-
[![npm Version](https://img.shields.io/node/v/@rollup-umd/deploy.svg?style=flat)](https://www.npmjs.com/package/@rollup-umd/deploy)
5-
[![Module formats](https://img.shields.io/badge/module%20formats-umd%2C%20cjs%2C%20esm-green.svg?style=flat)](https://www.npmjs.com/package/@rollup-umd/deploy)
1+
[![build status](/badges/$PACKAGE_VERSION/build.svg)](/commits/$PACKAGE_VERSION)
2+
[![coverage report](/badges/$PACKAGE_VERSION/coverage.svg)](/commits/$PACKAGE_VERSION)
63

4+
![image](https://img.shields.io/badge/version-$PACKAGE_VERSION-green.svg)
5+
![image](https://img.shields.io/badge/node-$NODE_VERSION-brightgreen.svg)
6+
![image](https://img.shields.io/badge/npm-$NPM_VERSION-red.svg)
7+
![image](https://img.shields.io/badge/PRs-welcome-brightgreen.svg)
8+
![image](https://img.shields.io/badge/publishing-private-red.svg)
79

8-
$PACKAGE_DESCRIPTION
10+
$PACKAGE_DESCRIPTION.

docs/js/jsdoc.md

Whitespace-only changes.

docs/prerequisite.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

docs/ui.md

Whitespace-only changes.

0 commit comments

Comments
 (0)