Skip to content

Commit

Permalink
Merge branch 'hotfix/1.0.0-alpha.9' into master
Browse files Browse the repository at this point in the history
  • Loading branch information
titouanmathis committed Aug 6, 2020
2 parents 170266f + 97eb76d commit 8d17286
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 7 deletions.
2 changes: 1 addition & 1 deletion docs/guide/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ next: /utils/
Install the package with your favorite package manager:

```bash
npm install @studiometa/js-toolkit@alpha
npm install @studiometa/js-toolkit
```

## Usage
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@studiometa/js-toolkit",
"version": "1.0.0-alpha.8",
"version": "1.0.0-alpha.9",
"description": "",
"scripts": {
"prepublishOnly": "if [[ ! $PWD =~ dist$ ]]; then echo '🚧 Use `npm run deploy` instead of `npm publish`!' && echo '' && exit 1; fi",
Expand All @@ -11,7 +11,7 @@
"demo:dev": "cd demo && meta dev",
"demo:build": "cd demo && meta build",
"build": "rm -rf dist/ && babel --source-maps --out-dir dist/ src/",
"deploy": "npm run build && cp package.json dist/ && cd dist/ && npm publish --tag alpha && rm package.json"
"deploy": "npm run build && cp package.json dist/ && cd dist/ && npm publish && rm package.json"
},
"publishConfig": {
"access": "public"
Expand Down
14 changes: 11 additions & 3 deletions readme.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,20 @@
# JS Toolkit

[![NPM Version](https://img.shields.io/npm/v/@studiometa/js-toolkit/alpha.svg?style=flat-square)](https://www.npmjs.com/package/@studiometa/js-toolkit/v/alpha)
[![NPM Version](https://img.shields.io/npm/v/@studiometa/js-toolkit.svg?style=flat-square)](https://www.npmjs.com/package/@studiometa/js-toolkit/)
[![Dependency Status](https://img.shields.io/david/studiometa/js-toolkit.svg?label=deps&style=flat-square)](https://david-dm.org/studiometa/js-toolkit)
[![devDependency Status](https://img.shields.io/david/dev/studiometa/js-toolkit.svg?label=devDeps&style=flat-square)](https://david-dm.org/studiometa/js-toolkit?type=dev)
![Codecov](https://img.shields.io/codecov/c/github/studiometa/js-toolkit?style=flat-square)

> A set of useful little bits of JavaScript to boost your project! 🚀
## Installation & usage
## Installation

Have a look at the [small guide](https://js-toolkit.meta.fr/guide/) for information on how to setup a simple map.
Install the latest version via NPM:

```bash
npm install @studiometa/js-toolkit
```

## Usage

Have a look at the [small guide](https://js-toolkit.meta.fr/guide/) for information on how to use the toolkit.

0 comments on commit 8d17286

Please sign in to comment.