Skip to content

Commit

Permalink
feat(sofa.core): integrates new build task
Browse files Browse the repository at this point in the history
BREAKING CHANGE: the new build task renames distribution files from dot-case to camel-case.

Before:

`dist/sofa.core.js`

After:

`dist/sofaCore.js`
  • Loading branch information
0x-r4bbit committed Feb 4, 2015
1 parent c09e4d1 commit 3860aef
Show file tree
Hide file tree
Showing 11 changed files with 55 additions and 495 deletions.
45 changes: 0 additions & 45 deletions .jshintrc

This file was deleted.

254 changes: 0 additions & 254 deletions Gruntfile.js

This file was deleted.

1 change: 0 additions & 1 deletion component.prefix

This file was deleted.

1 change: 0 additions & 1 deletion component.suffix

This file was deleted.

9 changes: 0 additions & 9 deletions dist/sofa.core.min.js

This file was deleted.

10 changes: 4 additions & 6 deletions dist/sofa.core.js → dist/sofaCore.js
Original file line number Diff line number Diff line change
@@ -1,13 +1,12 @@
/**
* sofa-core - v0.13.2 - 2015-01-23
* sofa-core - v0.13.2 - Wed Feb 04 2015 14:41:42 GMT+0100 (CET)
* http://www.sofa.io
*
* Copyright (c) 2014 CouchCommerce GmbH (http://www.couchcommerce.com / http://www.sofa.io) and other contributors
* THIS SOFTWARE CONTAINS COMPONENTS OF THE SOFA.IO COUCHCOMMERCE SDK (WWW.SOFA.IO).
* THIS SOFTWARE CONTAINS COMPONENTS OF THE SOFA.IO COUCHCOMMERCE SDK (WWW.SOFA.IO)
* IT IS PROVIDED UNDER THE LICENSE TERMS OF THE ATTACHED LICENSE.TXT.
*/
;(function (window, undefined) {

;(function (sofa, document, undefined) {
'use strict';
/**
* @sofadoc class
Expand Down Expand Up @@ -1293,5 +1292,4 @@ sofa.define('sofa.util.TreeIterator', function (tree, childNodeProperty) {
}
};
});

}(window));
}(sofa, document));

This comment has been minimized.

Copy link
@RobinThrift

RobinThrift Feb 10, 2015

Contributor

this fails, as sofa is undefined, we need to handle this edge case.

Loading

0 comments on commit 3860aef

Please sign in to comment.