Skip to content

Commit a4fbe4c

Browse files
committed
run update
1 parent c9428e9 commit a4fbe4c

File tree

7 files changed

+69
-32
lines changed

7 files changed

+69
-32
lines changed

.editorconfig

+2-11
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
# http://editorconfig.org
21
root = true
32

43
[*]
@@ -9,14 +8,6 @@ indent_size = 2
98
trim_trailing_whitespace = true
109
insert_final_newline = true
1110

12-
[*.md]
11+
[{**/{actual,fixtures,expected,templates}/**,*.md}]
1312
trim_trailing_whitespace = false
14-
insert_final_newline = false
15-
16-
[test/**]
17-
trim_trailing_whitespace = false
18-
insert_final_newline = false
19-
20-
[templates/**]
21-
trim_trailing_whitespace = false
22-
insert_final_newline = false
13+
insert_final_newline = false

.eslintrc.json

-5
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,4 @@
11
{
2-
"ecmaFeatures": {
3-
"modules": true,
4-
"experimentalObjectRestSpread": true
5-
},
6-
72
"env": {
83
"browser": false,
94
"es6": true,

.gitignore

+21-8
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,28 @@
1+
# always ignore files
12
*.DS_Store
23
*.sublime-*
3-
_gh_pages
4-
bower_components
4+
5+
# test related, or directories generated by tests
6+
test/actual
7+
actual
8+
coverage
9+
.nyc*
10+
11+
# npm
512
node_modules
613
npm-debug.log
7-
actual
8-
test/actual
14+
15+
# yarn
16+
yarn.lock
17+
yarn-error.log
18+
19+
# misc
20+
_gh_pages
21+
_draft
22+
_drafts
23+
bower_components
24+
vendor
925
temp
1026
tmp
1127
TODO.md
12-
vendor
13-
.idea
14-
benchmark
15-
coverage
28+
package-lock.json

.travis.yml

+7-6
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,14 @@
11
sudo: false
2+
os:
3+
- linux
4+
- osx
25
language: node_js
36
node_js:
7+
- node
8+
- '8'
9+
- '7'
10+
- '6'
411
- '5'
512
- '4'
613
- '0.12'
714
- '0.10'
8-
matrix:
9-
fast_finish: true
10-
allow_failures:
11-
- node_js: '4'
12-
- node_js: '0.10'
13-
- node_js: '0.12'

LICENSE

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The MIT License (MIT)
22

3-
Copyright (c) 2015-2016, Jon Schlinkert.
3+
Copyright (c) 2015-2017, Jon Schlinkert.
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal
@@ -18,4 +18,4 @@ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1818
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1919
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
2020
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21-
THE SOFTWARE.
21+
THE SOFTWARE.

appveyor.yml

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
# Test against this version of Node.js
2+
environment:
3+
matrix:
4+
# node.js
5+
- nodejs_version: "8.0"
6+
- nodejs_version: "7.0"
7+
- nodejs_version: "6.0"
8+
- nodejs_version: "5.0"
9+
- nodejs_version: "4.0"
10+
- nodejs_version: "0.12"
11+
- nodejs_version: "0.10"
12+
13+
# Install scripts. (runs after repo cloning)
14+
install:
15+
# Get the latest stable version of Node.js or io.js
16+
- ps: Install-Product node $env:nodejs_version
17+
# install modules
18+
- npm install
19+
20+
# Post-install test scripts.
21+
test_script:
22+
# Output useful info for debugging.
23+
- node --version
24+
- npm --version
25+
# run tests
26+
- npm test
27+
28+
# Don't actually build.
29+
build: off

package.json

+8
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,14 @@
44
"version": "0.3.0",
55
"homepage": "https://github.com/jonschlinkert/copy",
66
"author": "Jon Schlinkert (https://github.com/jonschlinkert)",
7+
"contributors": [
8+
"Brian Leathem (blog.bleathem.ca)",
9+
"Brian Woodward (https://twitter.com/doowb)",
10+
"gaozhenze (https://github.com/SoulRIver2015)",
11+
"Guilherme Santiago (https://gsantiago.github.io)",
12+
"Joakim Carlstein (http://joakim.beng.se)",
13+
"Jon Schlinkert (http://twitter.com/jonschlinkert)"
14+
],
715
"repository": "jonschlinkert/copy",
816
"bugs": {
917
"url": "https://github.com/jonschlinkert/copy/issues"

0 commit comments

Comments
 (0)