Skip to content

Commit 934fbe1

Browse files
Moved the NPM package to the @jsdevtools scope
1 parent 220d88c commit 934fbe1

File tree

3 files changed

+29
-8
lines changed

3 files changed

+29
-8
lines changed

CHANGELOG.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
Change Log
2+
====================================================================================================
3+
All notable changes will be documented in this file.
4+
Rehype URL Inspector adheres to [Semantic Versioning](http://semver.org/).
5+
6+
7+
[v2.0.0](https://github.com/JS-DevTools/rehype-url-inspector/tree/v2.0.0) (2020-02-18)
8+
----------------------------------------------------------------------------------------------------
9+
10+
- Moved Rehype URL Inspector to the [@JSDevTools scope](https://www.npmjs.com/org/jsdevtools) on NPM
11+
12+
- The "rehype-url-inspector" NPM package is now just a wrapper around the scoped "@jsdevtools/rehype-url-inspector" package
13+
14+
[Full Changelog](https://github.com/JS-DevTools/rehype-url-inspector/compare/v1.0.4...v2.0.0)
15+
16+
17+
18+
[v1.0.0](https://github.com/JS-DevTools/rehype-url-inspector/tree/v1.0.0) (2019-08-23)
19+
----------------------------------------------------------------------------------------------------
20+
21+
Initial release 🎉

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ Rehype URL Inspector
88
[![Coverage Status](https://coveralls.io/repos/github/JS-DevTools/rehype-url-inspector/badge.svg?branch=master)](https://coveralls.io/github/JS-DevTools/rehype-url-inspector)
99
[![Dependencies](https://david-dm.org/JS-DevTools/rehype-url-inspector.svg)](https://david-dm.org/JS-DevTools/rehype-url-inspector)
1010

11-
[![npm](https://img.shields.io/npm/v/rehype-url-inspector.svg)](https://www.npmjs.com/package/rehype-url-inspector)
12-
[![License](https://img.shields.io/npm/l/rehype-url-inspector.svg)](LICENSE)
11+
[![npm](https://img.shields.io/npm/v/@jsdevtools/rehype-url-inspector.svg)](https://www.npmjs.com/package/@jsdevtools/rehype-url-inspector)
12+
[![License](https://img.shields.io/npm/l/@jsdevtools/rehype-url-inspector.svg)](LICENSE)
1313

1414

1515

@@ -92,7 +92,7 @@ This script reads the `example.html` file above and finds all the URLs in it. Th
9292
```javascript
9393
const unified = require("unified");
9494
const parse = require("rehype-parse");
95-
const inspectUrls = require("rehype-url-inspector");
95+
const inspectUrls = require("@jsdevtools/rehype-url-inspector");
9696
const stringify = require("rehype-stringify");
9797
const toVFile = require("to-vfile");
9898

@@ -142,10 +142,10 @@ some-page.html
142142

143143
Installation
144144
--------------------------
145-
You can install `rehype-url-inspector` via [npm](https://docs.npmjs.com/about-npm/).
145+
You can install Rehype URL Inspector via [npm](https://docs.npmjs.com/about-npm/).
146146

147147
```bash
148-
npm install rehype-url-inspector
148+
npm install @jsdevtools/rehype-url-inspector
149149
```
150150

151151
You'll probably want to install [unified](https://unifiedjs.com/), [rehype-parse](https://github.com/rehypejs/rehype/tree/master/packages/rehype-parse), [rehype-stringify](https://github.com/rehypejs/rehype/tree/master/packages/rehype-stringify), and [to-vfile](https://github.com/vfile/to-vfile) as well.
@@ -164,7 +164,7 @@ The URL Inspector plugin works just like any other Rehype plugin. Pass it to [th
164164

165165
```javascript
166166
const unified = require("unified");
167-
const inspectUrls = require("rehype-url-inspector");
167+
const inspectUrls = require("@jsdevtools/rehype-url-inspector");
168168

169169
// Use the Rehype URL Inspector plugin with custom options
170170
unified().use(inspectUrls, {
@@ -229,7 +229,7 @@ To build the project locally on your computer:
229229

230230
License
231231
--------------------------
232-
rehype-url-inspector is 100% free and open-source, under the [MIT license](LICENSE). Use it however you want.
232+
Rehype URL Inspector is 100% free and open-source, under the [MIT license](LICENSE). Use it however you want.
233233

234234

235235

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "rehype-url-inspector",
2+
"name": "@jsdevtools/rehype-url-inspector",
33
"version": "1.0.4",
44
"description": "A rehype plugin to inspect, validate, or rewrite URLs anywhere in an HTML document",
55
"keywords": [

0 commit comments

Comments
 (0)