-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
README.md - fixed reference to unpkg.com file
package.json - added main bumped version to 0.2.1
- Loading branch information
1 parent
530eb38
commit 84f073d
Showing
3 changed files
with
5 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,7 +18,7 @@ Getting Started | |
|
||
1. `npm install xpathjs` then `import 'xpathjs'` at the top of your js file<br><br> | ||
or<br><br> | ||
Add `<script src="https://unpkg.com/[email protected].0/dist/xpathjs.min.js"></script>` in the \<head> of your HTML document. | ||
Add `<script src="https://unpkg.com/@mass-edge/[email protected].1/dist/xpathjs.min.js"></script>` in the \<head> of your HTML document. | ||
|
||
1. Initialize XPathJS: | ||
```javascript | ||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
{ | ||
"name": "@mass-edge/xpathjs", | ||
"description": "XPathJS is a pure JavaScript implementation of XPath 1.0 and DOM Level 3 XPath specifications.", | ||
"version": "0.2.0", | ||
"version": "0.2.1", | ||
"author": "Andrej Pavlovic <[email protected]>", | ||
"license": "MIT", | ||
"repository": { | ||
|
@@ -12,6 +12,7 @@ | |
"build": "grunt dist", | ||
"prepublishOnly": "npm run build" | ||
}, | ||
"main": "dist/xpathjs.min.js", | ||
"files": [ | ||
"/dist/xpathjs.js", | ||
"/dist/xpathjs.min.js", | ||
|