Skip to content

Commit 4e653f7

Browse files
v0.0.1
1 parent 861ebdd commit 4e653f7

File tree

6 files changed

+28
-3
lines changed

6 files changed

+28
-3
lines changed

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "0.0.0",
2+
"version": "0.0.1",
33
"main": "js/dist/bucketsort.js",
44
"homepage": "http://aureooms.github.io/js-bucketsort/",
55
"name": "aureooms-js-bucketsort",

component.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "0.0.0",
2+
"version": "0.0.1",
33
"main": "js/dist/bucketsort.js",
44
"license": "AGPL-3.0",
55
"repo": "aureooms/js-bucketsort",

js/dist/bucketsort.js

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
( function ( ) {
2+
3+
'use strict' ;
4+
5+
var definition = function ( exports , undefined ) {
6+
7+
8+
/* js/src/dummy.js */
9+
10+
return exports ;
11+
} ;
12+
if ( typeof exports === "object" ) {
13+
definition( exports ) ;
14+
}
15+
else if ( typeof define === "function" && define.amd ) {
16+
define( "aureooms-js-bucketsort" , [ ] , function ( ) { return definition( { } ) ; } ) ;
17+
}
18+
else if ( typeof window === "object" && typeof window.document === "object" ) {
19+
definition( window["bucketsort"] = { } ) ;
20+
}
21+
else console.error( "unable to detect type of module to define for aureooms-js-bucketsort") ;
22+
} )( ) ;

js/dist/bucketsort.js.map

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

js/dist/bucketsort.min.js

Lines changed: 2 additions & 0 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
@@ -10,7 +10,7 @@
1010
"test": "./node_modules/.bin/aureooms-node-package-test",
1111
"doc": "./node_modules/.bin/groc"
1212
},
13-
"version": "0.0.0",
13+
"version": "0.0.1",
1414
"main": "js/dist/bucketsort.js",
1515
"repository": {
1616
"url": "https://github.com/aureooms/js-bucketsort.git",

0 commit comments

Comments
 (0)