File tree Expand file tree Collapse file tree 6 files changed +9
-6
lines changed Expand file tree Collapse file tree 6 files changed +9
-6
lines changed Original file line number Diff line number Diff line change 2
2
3
3
## Unreleased
4
4
5
+ ### Changed
6
+ - Move ` js/jsonld.js ` to ` lib/jsonld.js ` .
7
+
5
8
### Added
6
9
- Add .editorconfig support.
7
10
Original file line number Diff line number Diff line change @@ -58,7 +58,7 @@ bower install jsonld
58
58
``` js
59
59
require .config ({
60
60
paths: {
61
- jsonld: ' bower_components/jsonld/js /jsonld'
61
+ jsonld: ' bower_components/jsonld/lib /jsonld'
62
62
}
63
63
});
64
64
define ([' jsonld' ], function (jsonld ) { ... });
Original file line number Diff line number Diff line change 5
5
" Digital Bazaar, Inc."
6
6
],
7
7
"license" : " BSD" ,
8
- "main" : [" js /jsonld.js" ],
8
+ "main" : [" lib /jsonld.js" ],
9
9
"dependencies" : {
10
10
"es6-promise" : " ^2.0.0"
11
11
},
File renamed without changes.
Original file line number Diff line number Diff line change 23
23
"email" : " support@digitalbazaar.com"
24
24
},
25
25
"license" : " BSD-3-Clause" ,
26
- "main" : " js /jsonld.js" ,
26
+ "main" : " lib /jsonld.js" ,
27
27
"dependencies" : {
28
28
"es6-promise" : " ^2.0.0" ,
29
29
"pkginfo" : " ~0.4.0" ,
59
59
"test-browser" : " make test-browser" ,
60
60
"test" : " make test" ,
61
61
"coverage" : " make test-coverage" ,
62
- "jscs" : " jscs js /jsonld.js tests/*.js" ,
63
- "jshint" : " jshint js /jsonld.js tests/*.js"
62
+ "jscs" : " jscs lib /jsonld.js tests/*.js" ,
63
+ "jshint" : " jshint lib /jsonld.js tests/*.js"
64
64
},
65
65
"browser" : {
66
66
"crypto" : " ./browser/ignore.js" ,
Original file line number Diff line number Diff line change 3
3
*
4
4
* @author goofballLogic
5
5
*/
6
- var jsonld = require ( '../js/jsonld ' ) ;
6
+ var jsonld = require ( '..' ) ;
7
7
var assert = require ( 'assert' ) ;
8
8
9
9
describe ( 'For the node.js document loader' , function ( ) {
You can’t perform that action at this time.
0 commit comments