Skip to content

Commit 3b4345a

Browse files
committed
Move js/jsonld.js to lib/jsonld.js.
1 parent fbe9cf2 commit 3b4345a

File tree

6 files changed

+9
-6
lines changed

6 files changed

+9
-6
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22

33
## Unreleased
44

5+
### Changed
6+
- Move `js/jsonld.js` to `lib/jsonld.js`.
7+
58
### Added
69
- Add .editorconfig support.
710

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ bower install jsonld
5858
```js
5959
require.config({
6060
paths: {
61-
jsonld: 'bower_components/jsonld/js/jsonld'
61+
jsonld: 'bower_components/jsonld/lib/jsonld'
6262
}
6363
});
6464
define(['jsonld'], function(jsonld) { ... });

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"Digital Bazaar, Inc."
66
],
77
"license": "BSD",
8-
"main": ["js/jsonld.js"],
8+
"main": ["lib/jsonld.js"],
99
"dependencies": {
1010
"es6-promise": "^2.0.0"
1111
},
File renamed without changes.

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
"email": "support@digitalbazaar.com"
2424
},
2525
"license": "BSD-3-Clause",
26-
"main": "js/jsonld.js",
26+
"main": "lib/jsonld.js",
2727
"dependencies": {
2828
"es6-promise": "^2.0.0",
2929
"pkginfo": "~0.4.0",
@@ -59,8 +59,8 @@
5959
"test-browser": "make test-browser",
6060
"test": "make test",
6161
"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"
6464
},
6565
"browser": {
6666
"crypto": "./browser/ignore.js",

test/node-document-loader-tests.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
*
44
* @author goofballLogic
55
*/
6-
var jsonld = require('../js/jsonld');
6+
var jsonld = require('..');
77
var assert = require('assert');
88

99
describe('For the node.js document loader', function() {

0 commit comments

Comments
 (0)