Skip to content
This repository was archived by the owner on Dec 5, 2018. It is now read-only.

Commit 4a11a49

Browse files
Updated URLs
1 parent d276b62 commit 4a11a49

File tree

7 files changed

+17
-17
lines changed

7 files changed

+17
-17
lines changed

.eslintrc.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# ESLint config
22
# http://eslint.org/docs/user-guide/configuring
3-
# https://github.com/James-Messinger/eslint-config-modular
3+
# https://github.com/JS-DevTools/eslint-config-modular
44

55
root: true
66

README.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@ OmniPath
22
============================
33
#### A consolidated API for file paths and URLs
44

5-
[![Build Status](https://api.travis-ci.org/James-Messinger/omnipath.svg?branch=master)](https://travis-ci.org/James-Messinger/omnipath)
6-
[![Dependencies](https://david-dm.org/James-Messinger/omnipath.svg)](https://david-dm.org/James-Messinger/omnipath)
7-
[![Coverage Status](https://coveralls.io/repos/github/James-Messinger/omnipath/badge.svg?branch=master)](https://coveralls.io/github/James-Messinger/omnipath)
8-
[![Codacy Score](https://api.codacy.com/project/badge/2659dc57d28a466590b03eb539c8a91f)](https://www.codacy.com/public/jamesmessinger/omnipath)
9-
[![Inline docs](http://inch-ci.org/github/James-Messinger/omnipath.svg?branch=master&style=shields)](http://inch-ci.org/github/James-Messinger/omnipath)
5+
[![Build Status](https://api.travis-ci.org/JS-DevTools/omnipath.svg?branch=master)](https://travis-ci.org/JS-DevTools/omnipath)
6+
[![Dependencies](https://david-dm.org/JS-DevTools/omnipath.svg)](https://david-dm.org/JS-DevTools/omnipath)
7+
[![Coverage Status](https://coveralls.io/repos/github/JS-DevTools/omnipath/badge.svg?branch=master)](https://coveralls.io/github/JS-DevTools/omnipath)
8+
[![Codacy Score](https://api.codacy.com/project/badge/2659dc57d28a466590b03eb539c8a91f)](https://www.codacy.com/public/JamesMessinger/omnipath)
9+
[![Inline docs](https://inch-ci.org/github/JS-DevTools/omnipath.svg?branch=master&style=shields)](https://inch-ci.org/github/JS-DevTools/omnipath)
1010

11-
[![npm](http://img.shields.io/npm/v/omnipath.svg)](https://www.npmjs.com/package/omnipath)
11+
[![npm](https://img.shields.io/npm/v/omnipath.svg)](https://www.npmjs.com/package/omnipath)
1212
[![License](https://img.shields.io/npm/l/omnipath.svg)](LICENSE)
1313

1414
[![Browser Compatibility](https://saucelabs.com/browser-matrix/omnipath.svg)](https://saucelabs.com/u/omnipath)
@@ -17,7 +17,7 @@ OmniPath is a single API that consolidates Node's native [path](https://nodejs.o
1717

1818
You can use `OmniPath.win32`, `OmniPath.posix`, or `OmniPath.url` to treat paths a particular way, or you can just use `OmniPath` to automatically adjust based on the runtime environment.
1919

20-
[Tested](https://jamesmessinger.com/omnipath/test/index.html) in Node and all modern web browsers on Mac, Windows, and Linux.
20+
[Tested](https://jsdevtools.org/omnipath/test/index.html) in Node and all modern web browsers on Mac, Windows, and Linux.
2121

2222

2323
Example
@@ -78,7 +78,7 @@ var OmniPath = require('omnipath');
7878
Reference [`omnipath.js`](dist/omnipath.js) or [`omnipath.min.js`](dist/omnipath.min.js) in your HTML:
7979

8080
```html
81-
<script src="https://cdn.rawgit.com/James-Messinger/omnipath/master/dist/omnipath.js"></script>
81+
<script src="https://cdn.rawgit.com/JS-DevTools/omnipath/master/dist/omnipath.js"></script>
8282
<script>
8383
OmniPath.resolve(somePath, someOtherPath);
8484
</script>
@@ -542,13 +542,13 @@ path.query; // => {foo: "bar"}
542542

543543
Contributing
544544
--------------------------
545-
I welcome any contributions, enhancements, and bug-fixes. [File an issue](https://github.com/James-Messinger/omnipath/issues) on GitHub and [submit a pull request](https://github.com/James-Messinger/omnipath/pulls).
545+
I welcome any contributions, enhancements, and bug-fixes. [File an issue](https://github.com/JS-DevTools/omnipath/issues) on GitHub and [submit a pull request](https://github.com/JS-DevTools/omnipath/pulls).
546546

547547
#### Building/Testing
548548
To build/test the project locally on your computer:
549549

550550
1. __Clone this repo__<br>
551-
`git clone https://github.com/James-Messinger/omnipath.git`
551+
`git clone https://github.com/JS-DevTools/omnipath.git`
552552

553553
2. __Install dependencies__<br>
554554
`npm install`

dist/omnipath.js

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

dist/omnipath.min.js

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

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,10 @@
2121
"url": "https://jamesmessinger.com"
2222
},
2323
"license": "MIT",
24-
"homepage": "https://github.com/James-Messinger/omnipath",
24+
"homepage": "https://github.com/JS-DevTools/omnipath",
2525
"repository": {
2626
"type": "git",
27-
"url": "https://github.com/James-Messinger/omnipath.git"
27+
"url": "https://github.com/JS-DevTools/omnipath.git"
2828
},
2929
"main": "lib/index.js",
3030
"browser": {

test/.eslintrc.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# ESLint config
22
# http://eslint.org/docs/user-guide/configuring
3-
# https://github.com/James-Messinger/eslint-config-modular
3+
# https://github.com/JS-DevTools/eslint-config-modular
44

55
extends:
66
- modular/test

test/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
<script src="https://cdnjs.cloudflare.com/ajax/libs/mocha/3.5.0/mocha.min.js"></script>
1717
<script src="https://cdnjs.cloudflare.com/ajax/libs/chai/4.1.1/chai.min.js"></script>
1818
<script src="https://cdnjs.cloudflare.com/ajax/libs/sinon.js/4.1.2/sinon.min.js"></script>
19-
<script src="https://cdn.rawgit.com/James-Messinger/karma-host-environment/master/dist/karma-host-environment.js"></script>
19+
<script src="https://cdn.rawgit.com/JS-DevTools/karma-host-environment/master/dist/karma-host-environment.js"></script>
2020

2121
<!-- OmniPath -->
2222
<script src="../dist/omnipath.js"></script>

0 commit comments

Comments
 (0)