Skip to content

Commit c7dac1a

Browse files
committed
bump 1.8.8
1 parent fa56d55 commit c7dac1a

File tree

5 files changed

+26
-5
lines changed

5 files changed

+26
-5
lines changed

CDN.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,19 @@ ESL的每个版本,都会将压缩后的资源通过CDN发布,便于开发
77
2. `min`: 精简版。删除了 *waitSeconds config的支持**global require调用时对relative id的检测和报错*,通常用于对体积要求吹毛求疵的线上环境。
88
3. `source`: 源码版。完整的esl源码,可用于开发过程调试。
99

10+
### 1.8.8
11+
12+
```html
13+
<!-- normal -->
14+
<script src="http://s1.bdstatic.com/r/www/cache/ecom/esl/1-8-8/esl.js"></script>
15+
16+
<!-- min -->
17+
<script src="http://s1.bdstatic.com/r/www/cache/ecom/esl/1-8-8/esl.min.js"></script>
18+
19+
<!-- source -->
20+
<script src="http://s1.bdstatic.com/r/www/cache/ecom/esl/1-8-8/esl.source.js"></script>
21+
22+
1023
### 1.8.6
1124

1225
```html

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
1.8.8
2+
-------
3+
4+
+ 更改全局变量的暴露方式,使require和define能够使用闭包的方式包装
5+
+ 对代码进行两处简单的小优化,删除无用变量
6+
+ 代码格式符合新规范
7+
8+
19
1.8.6
210
-------
311

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,13 +27,13 @@ See [Configuration Options](doc/config.md)
2727

2828
```html
2929
<!-- normal -->
30-
<script src="http://s1.bdstatic.com/r/www/cache/ecom/esl/1-8-6/esl.js"></script>
30+
<script src="http://s1.bdstatic.com/r/www/cache/ecom/esl/1-8-8/esl.js"></script>
3131

3232
<!-- min -->
33-
<script src="http://s1.bdstatic.com/r/www/cache/ecom/esl/1-8-6/esl.min.js"></script>
33+
<script src="http://s1.bdstatic.com/r/www/cache/ecom/esl/1-8-8/esl.min.js"></script>
3434

3535
<!-- source -->
36-
<script src="http://s1.bdstatic.com/r/www/cache/ecom/esl/1-8-6/esl.source.js"></script>
36+
<script src="http://s1.bdstatic.com/r/www/cache/ecom/esl/1-8-8/esl.source.js"></script>
3737
```
3838

3939
[过往版本](CDN.md)

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "esl",
33
"description": "ESL是一个浏览器端、符合AMD的标准加载器,适合用于现代Web浏览器端应用的入口与模块管理。",
4-
"version": "1.8.6",
4+
"version": "1.8.8",
55
"contributors": [
66
{ "name": "errorrik", "email": "[email protected]" }
77
],

src/esl.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ var esl;
160160
*
161161
* @type {string}
162162
*/
163-
globalRequire.version = '1.8.6';
163+
globalRequire.version = '1.8.8';
164164

165165
/**
166166
* loader名称

0 commit comments

Comments
 (0)