Skip to content

Commit 1fc8da2

Browse files
committed
Scaffold: Repository creation
0 parents  commit 1fc8da2

10 files changed

Lines changed: 186 additions & 0 deletions

File tree

.editorconfig

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# http://editorconfig.org
2+
root = true
3+
4+
[*]
5+
indent_style = space
6+
indent_size = 2
7+
charset = utf-8
8+
trim_trailing_whitespace = true
9+
insert_final_newline = true
10+
11+
[*.md]
12+
trim_trailing_whitespace = false

.eslintrc

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"extends": "gulp"
3+
}

.gitignore

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
# Logs
2+
logs
3+
*.log
4+
5+
# Runtime data
6+
pids
7+
*.pid
8+
*.seed
9+
10+
# Directory for instrumented libs generated by jscoverage/JSCover
11+
lib-cov
12+
13+
# Coverage directory used by tools like istanbul
14+
coverage
15+
16+
# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
17+
.grunt
18+
19+
# Compiled binary addons (http://nodejs.org/api/addons.html)
20+
build/Release
21+
22+
# Dependency directory
23+
# Commenting this out is preferred by some people, see
24+
# https://www.npmjs.org/doc/misc/npm-faq.html#should-i-check-my-node_modules-folder-into-git-
25+
node_modules
26+
27+
# Users Environment Variables
28+
.lock-wscript
29+
30+
# Garbage files
31+
.DS_Store
32+
33+
# Generated by integration tests
34+
test/fixtures/tmp
35+
test/fixtures/out

.jscsrc

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"preset": "gulp"
3+
}

.travis.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
sudo: false
2+
language: node_js
3+
node_js:
4+
- '6'
5+
- '5'
6+
- '4'
7+
- '0.12'
8+
- '0.10'
9+
after_script:
10+
- npm run coveralls

LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
The MIT License (MIT)
2+
3+
Copyright (c) 2017 Blaine Bublitz <[email protected]>
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

README.md

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
# @gulp-sourcemaps/map-sources
2+
3+
[![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]
4+
5+
Gulp plugin for mapping sources of a sourcemap.
6+
7+
## Example
8+
9+
```js
10+
// TODO
11+
```
12+
13+
## API
14+
15+
### `TODO`
16+
17+
## License
18+
19+
MIT
20+
21+
[downloads-image]: http://img.shields.io/npm/dm/@gulp-sourcemaps/map-sources.svg
22+
[npm-url]: https://npmjs.org/package/@gulp-sourcemaps/map-sources
23+
[npm-image]: http://img.shields.io/npm/v/@gulp-sourcemaps/map-sources.svg
24+
25+
[travis-url]: https://travis-ci.org/gulp-sourcemaps/map-sources
26+
[travis-image]: http://img.shields.io/travis/gulp-sourcemaps/map-sources.svg?label=travis-ci
27+
28+
[appveyor-url]: https://ci.appveyor.com/project/gulp-sourcemaps/map-sources
29+
[appveyor-image]: https://img.shields.io/appveyor/ci/gulp-sourcemaps/map-sources.svg?label=appveyor
30+
31+
[coveralls-url]: https://coveralls.io/r/gulp-sourcemaps/map-sources
32+
[coveralls-image]: http://img.shields.io/coveralls/gulp-sourcemaps/map-sources/master.svg

appveyor.yml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
# http://www.appveyor.com/docs/appveyor-yml
2+
# http://www.appveyor.com/docs/lang/nodejs-iojs
3+
4+
environment:
5+
matrix:
6+
# node.js
7+
- nodejs_version: "0.10"
8+
- nodejs_version: "0.12"
9+
- nodejs_version: "4"
10+
- nodejs_version: "5"
11+
- nodejs_version: "6"
12+
13+
install:
14+
- ps: Install-Product node $env:nodejs_version
15+
- npm install
16+
17+
test_script:
18+
- node --version
19+
- npm --version
20+
- cmd: npm test
21+
22+
build: off
23+
24+
# build version format
25+
version: "{build}"

package.json

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
{
2+
"name": "@gulp-sourcemaps/map-sources",
3+
"version": "0.0.0",
4+
"description": "Gulp plugin for mapping sources of a sourcemap.",
5+
"author": "Gulp-sourcemaps Team",
6+
"contributors": [
7+
"Blaine Bublitz <[email protected]>"
8+
],
9+
"repository": "gulp-sourcemaps/map-sources",
10+
"license": "MIT",
11+
"engines": {
12+
"node": ">= 0.10"
13+
},
14+
"main": "index.js",
15+
"files": [
16+
"LICENSE",
17+
"index.js"
18+
],
19+
"scripts": {
20+
"lint": "eslint . && jscs index.js test/",
21+
"pretest": "npm run lint",
22+
"test": "mocha --async-only",
23+
"cover": "istanbul cover _mocha --report lcovonly",
24+
"coveralls": "npm run cover && istanbul-coveralls"
25+
},
26+
"dependencies": {},
27+
"devDependencies": {
28+
"eslint": "^1.7.3",
29+
"eslint-config-gulp": "^2.0.0",
30+
"expect": "^1.19.0",
31+
"istanbul": "^0.4.3",
32+
"istanbul-coveralls": "^1.0.3",
33+
"jscs": "^2.3.5",
34+
"jscs-preset-gulp": "^1.0.0",
35+
"mocha": "^2.4.5"
36+
},
37+
"keywords": [
38+
"sourcemap",
39+
"sources",
40+
"stream"
41+
]
42+
}

test/.eslintrc

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"extends": "gulp/test"
3+
}

0 commit comments

Comments
 (0)