-
Notifications
You must be signed in to change notification settings - Fork 64
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
zhangyuanwei
committed
Aug 18, 2014
1 parent
3047be7
commit 341c8e2
Showing
4 changed files
with
57 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
his | ||
her | ||
=== | ||
|
||
Hao123 前端开发工具 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
#!/usr/bin/env node | ||
|
||
require('../index.js').cli.run(process.argv); | ||
|
||
// vim600: sw=4 ts=4 fdm=marker syn=javascript |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
var fis = module.exports = require('fis'); | ||
|
||
fis.cli.name = 'her'; | ||
fis.cli.info = fis.util.readJSON(__dirname + '/package.json'); | ||
|
||
fis.require.prefixes = ['her', 'fis']; | ||
|
||
var defaultConfig = require('./configs/default.js'); | ||
fis.config.merge(defaultConfig); | ||
|
||
//alias | ||
Object.defineProperty(global, 'her', { | ||
enumerable: true, | ||
writable: false, | ||
value: fis | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
{ | ||
"name": "her", | ||
"version": "0.0.1", | ||
"description": "Hao123 前端开发框架", | ||
"main": "index.js", | ||
"scripts": { | ||
"test": "echo \"Error: no test specified\" && exit 1" | ||
}, | ||
"bin":{ | ||
"her": "bin/her" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/hao123-dev/her.git" | ||
}, | ||
"keywords": [ | ||
"her", | ||
"fis", | ||
"bigpipe", | ||
"quickling", | ||
"bigrender", | ||
"pagelet", | ||
"smarty", | ||
"hao123" | ||
], | ||
"author": "[email protected]", | ||
"license": "MIT", | ||
"bugs": { | ||
"url": "https://github.com/hao123-dev/her/issues" | ||
}, | ||
"homepage": "https://github.com/hao123-dev/her", | ||
"dependencies": { | ||
"fis": "^1.7.14" | ||
} | ||
} |