-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1582 from alexlamsl/harmony-v2.8.10
Merging from master for 2.8.10
- Loading branch information
Showing
12 changed files
with
201 additions
and
74 deletions.
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 |
---|---|---|
@@ -0,0 +1,7 @@ | ||
- Bug report or feature request? | ||
- `uglify-js` version (`uglifyjs -V`) | ||
- JavaScript input - ideally as small as possible. | ||
- The `uglifyjs` CLI command executed or `minify()` options used. | ||
- An example of JavaScript output produced and/or the error or warning. | ||
|
||
Note: the release version of `uglify-js` only supports ES5. Those wishing to minify ES6 should use the experimental [`harmony`](https://github.com/mishoo/UglifyJS2#harmony) branch. |
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,10 +1,13 @@ | ||
language: node_js | ||
before_install: "npm install -g npm" | ||
node_js: | ||
- "0.12" | ||
- "0.10" | ||
- "0.12" | ||
- "4" | ||
- "6" | ||
- "7" | ||
env: | ||
- UGLIFYJS_TEST_ALL=1 | ||
matrix: | ||
fast_finish: true | ||
sudo: false |
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
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
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
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 |
---|---|---|
|
@@ -4,7 +4,7 @@ | |
"homepage": "http://lisperator.net/uglifyjs", | ||
"author": "Mihai Bazon <[email protected]> (http://lisperator.net/)", | ||
"license": "BSD-2-Clause", | ||
"version": "2.8.8", | ||
"version": "2.8.10", | ||
"engines": { | ||
"node": ">=0.8.0" | ||
}, | ||
|
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
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,19 @@ | ||
inner_reference: { | ||
options = { | ||
side_effects: true, | ||
} | ||
input: { | ||
!function f(a) { | ||
return a && f(a - 1) + a; | ||
}(42); | ||
!function g(a) { | ||
return a; | ||
}(42); | ||
} | ||
expect: { | ||
!function f(a) { | ||
return a && f(a - 1) + a; | ||
}(42); | ||
!void 0; | ||
} | ||
} |
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
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
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.