https://github.com/rbtech/gulp-strip-module
Removes module structure
https://github.com/rbtech/gulp-strip-module
Last synced: 10 months ago
JSON representation
Removes module structure
- Host: GitHub
- URL: https://github.com/rbtech/gulp-strip-module
- Owner: rbtech
- Created: 2014-05-23T13:37:58.000Z (about 12 years ago)
- Default Branch: master
- Last Pushed: 2014-05-23T14:30:12.000Z (about 12 years ago)
- Last Synced: 2024-04-28T00:08:03.520Z (about 2 years ago)
- Language: JavaScript
- Size: 316 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# gulp-strip-module
Removes module structure from a NodeJS module.
## Install
```sh
npm install gulp-strip-module --save-dev
```
## Usage
```javascript
var stripModule = require('gulp-strip-module');
gulp.task('default', function(){
gulp.src('nodeModule.js')
.pipe(stripModule())
.pipe(gulp.dest('build/nodeModule.js'));
});
```
License
-------
gulp-strip-module is licensed under the MIT license.
> The MIT License (MIT)
>
> Copyright (c) 2014 Andrew Quan
>
> 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 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.