aboutsummaryrefslogtreecommitdiff
path: root/node_modules/replace-ext
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2017-04-20 03:09:25 +0200
committerFlorian Dold <florian.dold@gmail.com>2017-04-24 16:14:29 +0200
commit82f2b76e25a4a67e01ec67e5ebe39d14ad771ea8 (patch)
tree965f6eb89b84d65a62b49008fd972c004832ccd1 /node_modules/replace-ext
parente6e0cbc387c2a77b48e4065c229daa65bf1aa0fa (diff)
downloadwallet-core-82f2b76e25a4a67e01ec67e5ebe39d14ad771ea8.tar.xz
Reorganize module loading.
We now use webpack instead of SystemJS, effectively bundling modules into one file (plus commons chunks) for every entry point. This results in a much smaller extension size (almost half). Furthermore we use yarn/npm even for extension run-time dependencies. This relieves us from manually vendoring and building dependencies. It's also easier to understand for new developers familiar with node.
Diffstat (limited to 'node_modules/replace-ext')
-rwxr-xr-xnode_modules/replace-ext/LICENSE35
-rw-r--r--node_modules/replace-ext/README.md62
-rw-r--r--node_modules/replace-ext/index.js19
-rw-r--r--node_modules/replace-ext/package.json65
4 files changed, 78 insertions, 103 deletions
diff --git a/node_modules/replace-ext/LICENSE b/node_modules/replace-ext/LICENSE
index fd38d6935..7cbe012c6 100755
--- a/node_modules/replace-ext/LICENSE
+++ b/node_modules/replace-ext/LICENSE
@@ -1,21 +1,20 @@
-The MIT License (MIT)
+Copyright (c) 2014 Fractal <contact@wearefractal.com>
-Copyright (c) 2014 Blaine Bublitz <blaine.bublitz@gmail.com>, Eric Schoffstall <yo@contra.io> and other contributors
+Permission is hereby granted, free of charge, to any person obtaining
+a copy of this software and associated documentation files (the
+"Software"), to deal in the Software without restriction, including
+without limitation the rights to use, copy, modify, merge, publish,
+distribute, sublicense, and/or sell copies of the Software, and to
+permit persons to whom the Software is furnished to do so, subject to
+the following conditions:
-Permission is hereby granted, free of charge, to any person obtaining a copy
-of this software and associated documentation files (the "Software"), to deal
-in the Software without restriction, including without limitation the rights
-to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
-copies of the Software, and to permit persons to whom the Software is
-furnished to do so, subject to the following conditions:
+The above copyright notice and this permission notice shall be
+included in all copies or substantial portions of the Software.
-The above copyright notice and this permission notice shall be included in all
-copies or substantial portions of the Software.
-
-THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
-IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
-FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
-AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
-LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
-OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
-SOFTWARE.
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
+LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
+OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
+WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
diff --git a/node_modules/replace-ext/README.md b/node_modules/replace-ext/README.md
index 8775983b7..05b5d21fd 100644
--- a/node_modules/replace-ext/README.md
+++ b/node_modules/replace-ext/README.md
@@ -1,50 +1,44 @@
-<p align="center">
- <a href="http://gulpjs.com">
- <img height="257" width="114" src="https://raw.githubusercontent.com/gulpjs/artwork/master/gulp-2x.png">
- </a>
-</p>
+# replace-ext [![NPM version][npm-image]][npm-url] [![Build Status][travis-image]][travis-url] [![Coveralls Status][coveralls-image]][coveralls-url] [![Dependency Status][david-image]][david-url]
-# replace-ext
-[![NPM version][npm-image]][npm-url] [![Downloads][downloads-image]][npm-url] [![Build Status][travis-image]][travis-url] [![AppVeyor Build Status][appveyor-image]][appveyor-url] [![Coveralls Status][coveralls-image]][coveralls-url] [![Gitter chat][gitter-image]][gitter-url]
+## Information
-Replaces a file extension with another one.
+<table>
+<tr>
+<td>Package</td><td>replace-ext</td>
+</tr>
+<tr>
+<td>Description</td>
+<td>Replaces a file extension with another one</td>
+</tr>
+<tr>
+<td>Node Version</td>
+<td>>= 0.4</td>
+</tr>
+</table>
## Usage
-```js
+```javascript
var replaceExt = require('replace-ext');
var path = '/some/dir/file.js';
-var newPath = replaceExt(path, '.coffee');
+var npath = replaceExt(path, '.coffee');
-console.log(newPath); // /some/dir/file.coffee
+console.log(npath); // /some/dir/file.coffee
```
-## API
+[npm-url]: https://npmjs.org/package/replace-ext
+[npm-image]: https://badge.fury.io/js/replace-ext.png
-### `replaceExt(path, extension)`
+[travis-url]: https://travis-ci.org/wearefractal/replace-ext
+[travis-image]: https://travis-ci.org/wearefractal/replace-ext.png?branch=master
-Replaces the extension from `path` with `extension` and returns the updated path string.
+[coveralls-url]: https://coveralls.io/r/wearefractal/replace-ext
+[coveralls-image]: https://coveralls.io/repos/wearefractal/replace-ext/badge.png
-Does not replace the extension if `path` is not a string or is empty.
+[depstat-url]: https://david-dm.org/wearefractal/replace-ext
+[depstat-image]: https://david-dm.org/wearefractal/replace-ext.png
-## License
-
-MIT
-
-[downloads-image]: http://img.shields.io/npm/dm/replace-ext.svg
-[npm-url]: https://www.npmjs.com/package/replace-ext
-[npm-image]: http://img.shields.io/npm/v/replace-ext.svg
-
-[travis-url]: https://travis-ci.org/gulpjs/replace-ext
-[travis-image]: http://img.shields.io/travis/gulpjs/replace-ext.svg?label=travis-ci
-
-[appveyor-url]: https://ci.appveyor.com/project/gulpjs/replace-ext
-[appveyor-image]: https://img.shields.io/appveyor/ci/gulpjs/replace-ext.svg?label=appveyor
-
-[coveralls-url]: https://coveralls.io/r/gulpjs/replace-ext
-[coveralls-image]: http://img.shields.io/coveralls/gulpjs/replace-ext/master.svg
-
-[gitter-url]: https://gitter.im/gulpjs/gulp
-[gitter-image]: https://badges.gitter.im/gulpjs/gulp.svg
+[david-url]: https://david-dm.org/wearefractal/replace-ext
+[david-image]: https://david-dm.org/wearefractal/replace-ext.png?theme=shields.io \ No newline at end of file
diff --git a/node_modules/replace-ext/index.js b/node_modules/replace-ext/index.js
index 7cb7789e2..3f76938e4 100644
--- a/node_modules/replace-ext/index.js
+++ b/node_modules/replace-ext/index.js
@@ -1,18 +1,9 @@
-'use strict';
-
var path = require('path');
-function replaceExt(npath, ext) {
- if (typeof npath !== 'string') {
- return npath;
- }
-
- if (npath.length === 0) {
- return npath;
- }
+module.exports = function(npath, ext) {
+ if (typeof npath !== 'string') return npath;
+ if (npath.length === 0) return npath;
- var nFileName = path.basename(npath, path.extname(npath)) + ext;
+ var nFileName = path.basename(npath, path.extname(npath))+ext;
return path.join(path.dirname(npath), nFileName);
-}
-
-module.exports = replaceExt;
+}; \ No newline at end of file
diff --git a/node_modules/replace-ext/package.json b/node_modules/replace-ext/package.json
index 27dbe3104..307d99b78 100644
--- a/node_modules/replace-ext/package.json
+++ b/node_modules/replace-ext/package.json
@@ -1,44 +1,35 @@
{
- "name": "replace-ext",
- "version": "1.0.0",
- "description": "Replaces a file extension with another one",
- "author": "Gulp Team <team@gulpjs.com> (http://gulpjs.com/)",
- "contributors": [
- "Eric Schoffstall <yo@contra.io>",
- "Blaine Bublitz <blaine.bublitz@gmail.com>"
- ],
- "repository": "gulpjs/replace-ext",
- "license": "MIT",
- "engines": {
- "node": ">= 0.10"
+ "name":"replace-ext",
+ "description":"Replaces a file extension with another one",
+ "version":"0.0.1",
+ "homepage":"http://github.com/wearefractal/replace-ext",
+ "repository":"git://github.com/wearefractal/replace-ext.git",
+ "author":"Fractal <contact@wearefractal.com> (http://wearefractal.com/)",
+ "main":"./index.js",
+
+ "dependencies":{
+
+ },
+ "devDependencies": {
+ "mocha": "~1.17.0",
+ "should": "~3.1.0",
+ "mocha-lcov-reporter": "~0.0.1",
+ "coveralls": "~2.6.1",
+ "istanbul": "~0.2.3",
+ "rimraf": "~2.2.5",
+ "jshint": "~2.4.1"
},
- "main": "index.js",
- "files": [
- "LICENSE",
- "index.js"
- ],
"scripts": {
- "lint": "eslint . && jscs index.js test/",
- "pretest": "npm run lint",
- "test": "mocha --async-only",
- "cover": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly",
- "coveralls": "npm run cover && istanbul-coveralls"
+ "test": "mocha --reporter spec && jshint",
+ "coveralls": "istanbul cover _mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | coveralls && rm -rf ./coverage"
},
- "dependencies": {},
- "devDependencies": {
- "eslint": "^1.10.3",
- "eslint-config-gulp": "^2.0.0",
- "expect": "^1.16.0",
- "istanbul": "^0.4.3",
- "istanbul-coveralls": "^1.0.3",
- "jscs": "^2.3.5",
- "jscs-preset-gulp": "^1.0.0",
- "mocha": "^2.4.5"
+ "engines": {
+ "node": ">= 0.4"
},
- "keywords": [
- "gulp",
- "extensions",
- "filepath",
- "basename"
+ "licenses":[
+ {
+ "type":"MIT",
+ "url":"http://github.com/wearefractal/replace-ext/raw/master/LICENSE"
+ }
]
}