Skip to content

Commit

Permalink
0.8.4
Browse files Browse the repository at this point in the history
  • Loading branch information
zloirock committed Apr 17, 2015
1 parent 2d76528 commit 3bd0d73
Show file tree
Hide file tree
Showing 13 changed files with 9,516 additions and 8,433 deletions.
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -1313,6 +1313,9 @@ delay(1e3).then(() => log('after 1 sec'));
```
## Changelog
##### 0.8.4 - 2015.04.18
* uses `webpack` instead of `browserify` for browser builds - more compression-friendly result
##### 0.8.3 - 2015.04.14
* fixed `Array` statics with single entry points
Expand Down
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "core.js",
"main": "client/core.js",
"version": "0.8.3",
"version": "0.8.4",
"description": "Standard Library",
"keywords": [
"ES6",
Expand Down
3 changes: 2 additions & 1 deletion build/build.ls
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,8 @@ module.exports = ({modules, blacklist, library}, next)-> let @ = modules.turn ((
@[name] = no
if library => @ <<< {-\es6.object.prototype, -\es6.function, -\es6.regexp, -\es6.number.constructor, -\core.iterator}
ENTRY = "./__tmp#{ Math.random! }__.js"
err <-! writeFile "#ENTRY", list.filter(~> @[it]).map(-> "require('.#{ if library => '/library' else '' }/modules/#it');" ).join '\n'
PATH = ".#{ if library => '/library' else '' }/modules/"
err <-! writeFile ENTRY, list.filter(~> @[it]).map(-> "require('#PATH#it');" ).join '\n'
check err
TARGET = "./__tmp#{ Math.random! }__.js"
err, info <-! webpack entry: ENTRY, output: { path: '', filename: TARGET }
Expand Down

0 comments on commit 3bd0d73

Please sign in to comment.