Skip to content

Commit 488486d

Browse files
committed
Updated to 2.7.0
1 parent 1c4cc50 commit 488486d

File tree

6 files changed

+17
-17
lines changed

6 files changed

+17
-17
lines changed

build/amdclean.js

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! amdclean - v2.6.1 - 2015-04-10
1+
/*! amdclean - v2.7.0 - 2015-04-10
22
* http://gregfranko.com/amdclean
33
* Copyright (c) 2015 Greg Franko */
44

@@ -26,7 +26,7 @@ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
2626
2727
*/
2828

29-
;var sourcemapToAst;(function(esprima, estraverse, escodegen, _) {
29+
;(function(esprima, estraverse, escodegen, _, sourcemapToAst) {
3030
// defaultOptions.js
3131
// =================
3232
// AMDclean default options
@@ -1528,7 +1528,7 @@ clean = function clean() {
15281528
};
15291529
(function () {
15301530
(function (root, factory, undefined) {
1531-
'use strict';
1531+
15321532
// Universal Module Definition (UMD) to support AMD, CommonJS/Node.js, and plain browser loading
15331533
if (typeof define === 'function' && define.amd) {
15341534
factory.amd = true;
@@ -1554,7 +1554,7 @@ clean = function clean() {
15541554
root.amdclean = factory(null, root);
15551555
}
15561556
}(this, function cleanamd(amdDependencies, context) {
1557-
'use strict';
1557+
15581558
// Third-Party Dependencies
15591559
// Note: These dependencies are hoisted to the top (as local variables) at build time (Look in the gulpfile.js file and the AMDclean wrap option for more details)
15601560
sourcemapToAst = function () {
@@ -1661,7 +1661,7 @@ clean = function clean() {
16611661
// The object that is publicly accessible
16621662
publicAPI = {
16631663
// Current project version number
1664-
'VERSION': '2.6.0',
1664+
'VERSION': '2.7.0',
16651665
'clean': function (options, overloadedOptions) {
16661666
// Creates a new AMDclean instance
16671667
var amdclean = new AMDclean(options, overloadedOptions), cleanedCode = amdclean.clean();
@@ -1682,4 +1682,4 @@ clean = function clean() {
16821682
};
16831683
return publicAPI;
16841684
}));
1685-
}());}(typeof esprima !== "undefined" ? esprima: null, typeof estraverse !== "undefined" ? estraverse: null, typeof escodegen !== "undefined" ? escodegen: null, typeof _ !== "undefined" ? _ : null));
1685+
}());}(typeof esprima !== "undefined" ? esprima: null, typeof estraverse !== "undefined" ? estraverse: null, typeof escodegen !== "undefined" ? escodegen: null, typeof _ !== "undefined" ? _ : null, typeof sourcemapToAst !== "undefined" ? sourcemapToAst : null));

build/amdclean.min.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "amdclean",
3-
"version": "2.6.1",
3+
"version": "2.7.0",
44
"description": "A build tool that converts AMD code to standard JavaScript",
55
"main": "./src/amdclean",
66
"repository": {

src/amdclean.js

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! amdclean - v2.6.1 - 2015-04-10
1+
/*! amdclean - v2.7.0 - 2015-04-10
22
* http://gregfranko.com/amdclean
33
* Copyright (c) 2015 Greg Franko */
44

@@ -26,7 +26,7 @@ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
2626
2727
*/
2828

29-
;var sourcemapToAst;(function(esprima, estraverse, escodegen, _) {
29+
;(function(esprima, estraverse, escodegen, _, sourcemapToAst) {
3030
// defaultOptions.js
3131
// =================
3232
// AMDclean default options
@@ -1528,7 +1528,7 @@ clean = function clean() {
15281528
};
15291529
(function () {
15301530
(function (root, factory, undefined) {
1531-
'use strict';
1531+
15321532
// Universal Module Definition (UMD) to support AMD, CommonJS/Node.js, and plain browser loading
15331533
if (typeof define === 'function' && define.amd) {
15341534
factory.amd = true;
@@ -1554,7 +1554,7 @@ clean = function clean() {
15541554
root.amdclean = factory(null, root);
15551555
}
15561556
}(this, function cleanamd(amdDependencies, context) {
1557-
'use strict';
1557+
15581558
// Third-Party Dependencies
15591559
// Note: These dependencies are hoisted to the top (as local variables) at build time (Look in the gulpfile.js file and the AMDclean wrap option for more details)
15601560
sourcemapToAst = function () {
@@ -1661,7 +1661,7 @@ clean = function clean() {
16611661
// The object that is publicly accessible
16621662
publicAPI = {
16631663
// Current project version number
1664-
'VERSION': '2.6.0',
1664+
'VERSION': '2.7.0',
16651665
'clean': function (options, overloadedOptions) {
16661666
// Creates a new AMDclean instance
16671667
var amdclean = new AMDclean(options, overloadedOptions), cleanedCode = amdclean.clean();
@@ -1682,4 +1682,4 @@ clean = function clean() {
16821682
};
16831683
return publicAPI;
16841684
}));
1685-
}());}(typeof esprima !== "undefined" ? esprima: null, typeof estraverse !== "undefined" ? estraverse: null, typeof escodegen !== "undefined" ? escodegen: null, typeof _ !== "undefined" ? _ : null));
1685+
}());}(typeof esprima !== "undefined" ? esprima: null, typeof estraverse !== "undefined" ? estraverse: null, typeof escodegen !== "undefined" ? escodegen: null, typeof _ !== "undefined" ? _ : null, typeof sourcemapToAst !== "undefined" ? sourcemapToAst : null));

src/modules/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ require([
162162
// The object that is publicly accessible
163163
publicAPI = {
164164
// Current project version number
165-
'VERSION': '2.6.0',
165+
'VERSION': '2.7.0',
166166
'clean': function(options, overloadedOptions) {
167167
// Creates a new AMDclean instance
168168
var amdclean = new AMDclean(options, overloadedOptions),

test/commonjsoutput.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)