Skip to content

Commit

Permalink
Merge branch 'master' of github.com:fex-team/fis3-hook-commonJs
Browse files Browse the repository at this point in the history
  • Loading branch information
2betop committed Oct 27, 2015
2 parents 5490ad4 + c59cca9 commit 699db81
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,14 @@ fis.match('/modules/**.js', {

另外,所有 `isMod``true` 的文件都会被包裹成 AMD, 如果不想包裹,请设置 `wrap` 属性为 `false`

设置了 `isMod` 为 true 的文件可以在 js 里面直接通过 `require('文件路径')` 的方式来使用,支持相对路径和绝对路径。

```js
var $ = require('/static/lib/jquery.js');

require('./index.js');
```

## 安装

全局安装或者本地安装都可以。
Expand All @@ -42,6 +50,10 @@ fis.hook('commonjs', {
});
```

## 注意

虽然支持 paths 和 packages 设置,目的主要是为了迁移代码用的,从零开发,推荐直接使用 `require('文件路径')` 的方式,更简单明了。

## 配置项

以下所有配置都是可选配置。简单使用可以跳过。
Expand Down

0 comments on commit 699db81

Please sign in to comment.