@kosatyi/ejs 0.0.5 → 0.0.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +4 -5
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -2,10 +2,9 @@
2
2
 
3
3
  Embedded JavaScript templates
4
4
 
5
- ![npm](https://img.shields.io/npm/v/@kosatyi/ejs.svg)
6
- ![downloads](https://img.shields.io/npm/dt/@kosatyi/ejs.svg)
7
- ![license](https://img.shields.io/npm/l/@kosatyi/ejs.svg)
8
- ![github-issues](https://img.shields.io/github/issues/kosatyi/ejs.svg)
5
+ [![npm](https://img.shields.io/npm/v/@kosatyi/ejs.svg)](https://www.npmjs.com/package/@kosatyi/ejs)
6
+ [![github-issues](https://img.shields.io/github/issues/kosatyi/ejs.svg)](https://github.com/kosatyi/ejs/issues)
7
+ [![license](https://img.shields.io/npm/l/@kosatyi/ejs.svg)](https://github.com/kosatyi/ejs/blob/master/LICENCE)
9
8
 
10
9
  ## Install
11
10
 
@@ -20,7 +19,7 @@ $ npm install @kosatyi/ejs --save
20
19
  ```js
21
20
  const ejs = require('@kosatyi/ejs');
22
21
 
23
- // path where templates is located (views by default so you can skip this step)
22
+ // path where templates is located
24
23
  ejs.configure({
25
24
  path: 'views'
26
25
  })
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@kosatyi/ejs",
3
3
  "description": "EJS Templates",
4
4
  "homepage": "https://github.com/kosatyi/ejs",
5
- "version": "0.0.5",
5
+ "version": "0.0.6",
6
6
  "main": "dist/ejs.cjs",
7
7
  "module": "dist/ejs.mjs",
8
8
  "browser": "dist/ejs.js",