Skip to content

Commit 10910ae

Browse files
Moved the NPM package to the @jsdevtools scope
1 parent d509276 commit 10910ae

File tree

3 files changed

+28
-8
lines changed

3 files changed

+28
-8
lines changed

CHANGELOG.md

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

README.md

+7-7
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ Sourcemapify
88
[![Coverage Status](https://coveralls.io/repos/github/JS-DevTools/sourcemapify/badge.svg?branch=master)](https://coveralls.io/github/JS-DevTools/sourcemapify?branch=master)
99
[![Dependencies](https://david-dm.org/JS-DevTools/sourcemapify.svg)](https://david-dm.org/JS-DevTools/sourcemapify)
1010

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

1414

1515
The default sourcemap that Browserify generates uses paths that are relative to the current directory, which may not always be what you want. This plugin lets you change the relative path, or use absolute paths.
@@ -35,7 +35,7 @@ Installation
3535
Install using [npm](https://docs.npmjs.com/about-npm/):
3636

3737
```bash
38-
npm install sourcemapify
38+
npm install @jsdevtools/sourcemapify
3939
```
4040

4141

@@ -45,15 +45,15 @@ Usage
4545
Use Browserify's sub-argument command-line syntax, like this:
4646

4747
```bash
48-
browserify -p [ sourcemapify --root "../../" ] --debug
48+
browserify -p [ @jsdevtools/sourcemapify --root "../../" ] --debug
4949
```
5050

5151
### Browserify API
5252
Use the plugin programmatically like this: [full example](test/api.js)
5353

5454
```javascript
5555
var browserify = require('browserify');
56-
var sourcemapify = require('sourcemapify');
56+
var sourcemapify = require('@jsdevtools/sourcemapify');
5757

5858
browserify({debug: true})
5959
.plugin(sourcemapify, {base: 'www/js'})
@@ -89,7 +89,7 @@ To build the project locally on your computer:
8989

9090
3. __Link the module to itself__ (so Browserify can find the plugin)<br>
9191
`npm link`<br>
92-
`npm link sourcemapify`
92+
`npm link @jsdevtools/sourcemapify`
9393

9494
4. __Run the tests__<br>
9595
`npm test`
@@ -98,7 +98,7 @@ To build the project locally on your computer:
9898

9999
License
100100
--------------------------
101-
sourcemapify is 100% free and open-source, under the [MIT license](LICENSE). Use it however you want.
101+
Sourcemapify is 100% free and open-source, under the [MIT license](LICENSE). Use it however you want.
102102

103103

104104
Big Thanks To

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "sourcemapify",
2+
"name": "@jsdevtools/sourcemapify",
33
"version": "1.1.9",
44
"description": "Source Map plugin for Browserify",
55
"keywords": [

0 commit comments

Comments
 (0)