From d95e8d132ac7e2deb732cb74c21a61eca5eb61a5 Mon Sep 17 00:00:00 2001 From: stop2stare Date: Mon, 12 Feb 2018 17:00:42 +0800 Subject: [PATCH] update version --- README.md | 6 +++++- package.json | 4 ++-- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index bb86a46..7c39dc3 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,11 @@ A simple HTML template engine, currently a parser. Basically implements ejs synt ## Examples -You can simply run the [examples here](https://github.com/stop2stare/leopard/tree/master/examples). +You can simply run the [examples here](https://github.com/stop2stare/leopard/tree/master/examples) with + +``` shell +$ npm run serve:examples +``` ``` js var Leopard = require('leopard-template') diff --git a/package.json b/package.json index b6d61d6..23963ad 100644 --- a/package.json +++ b/package.json @@ -1,8 +1,8 @@ { "name": "leopard-template", - "version": "1.0.0", + "version": "1.1.0", "description": "a simple HTML template engine", - "main": "./dist/leopard.js", + "main": "./dist/leopard.server.min.js", "scripts": { "build": "rollup -c", "test": "./node_modules/.bin/mocha --recursive",