diff --git a/Readme.md b/Readme.md index b035c19..546b769 100644 --- a/Readme.md +++ b/Readme.md @@ -1,3 +1,5 @@ +![module info](https://nodei.co/npm/smartyx.png?downloads=true&downloadRank=true&stars=true) + # 模板引擎 > 因为我原先是个PHPer,也一直喜欢smarty那个模板引擎,所以在nodeJS上,我也喜欢能有一款类似于smarty的的模板引擎,可惜我所知的几个引擎中,并没有smarty的理念,故自己开发了一款。 然而nodeJS并不是php,完全的模拟smarty又会失去nodeJS的味道,所以,我并不打算做nodeJS版的smarty,只是吸收了smarty的一些优秀的理念, 再结合nodeJS,开发了一套简单易用的模板引擎。 diff --git a/lib/main.js b/lib/main.js index a9efc22..c0eeb91 100644 --- a/lib/main.js +++ b/lib/main.js @@ -6,7 +6,7 @@ */ "use strict"; -require('dojs-extend') +require('es.shim') const Tool = require('./tool'), fs = require('fs'), path = require('path'), diff --git a/package.json b/package.json index 66c7c1e..97d8089 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "smartyx", - "version": "0.0.2", + "version": "0.0.3", "description": "nodeJS模板引擎,理念源自于PHP的smarty模板引擎", "keywords": [ "dojs", @@ -15,7 +15,7 @@ "url": "https://git.oschina.net/yutent/smartyx.git" }, "dependencies": { - "dojs-extend": "^1.1.2" + "es.shim": "^0.0.2" }, "devDependencies": {}, "main": "lib/main.js"