Skip to content

Commit 1d7c0fd

Browse files
committed
run update
1 parent 15dc93e commit 1d7c0fd

File tree

5 files changed

+60
-26
lines changed

5 files changed

+60
-26
lines changed

.gitignore

Lines changed: 20 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,27 @@
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

.travis.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,16 @@
11
sudo: false
2+
os:
3+
- linux
4+
- osx
25
language: node_js
36
node_js:
7+
- node
48
- '6'
5-
- '5'
69
- '4'
710
- '0.12'
811
- '0.10'
912
matrix:
10-
fast_finish: true
1113
allow_failures:
1214
- node_js: '4'
13-
- node_js: '0.10'
1415
- node_js: '0.12'
16+
- node_js: '0.10'

LICENSE

Lines changed: 1 addition & 1 deletion
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

index.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
/*!
2-
* assemble-streams <https://github.com/jonschlinkert/assemble-streams>
2+
* assemble-streams <https://github.com/assemble/assemble-streams>
33
*
4-
* Copyright (c) 2015, Jon Schlinkert.
5-
* Licensed under the MIT License.
4+
* Copyright (c) 2015-2017, Jon Schlinkert.
5+
* Released under the MIT License.
66
*/
77

88
'use strict';

package.json

Lines changed: 31 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,6 @@
1111
"license": "MIT",
1212
"files": [
1313
"index.js",
14-
"LICENSE",
15-
"README.md",
1614
"utils.js"
1715
],
1816
"main": "index.js",
@@ -24,28 +22,50 @@
2422
},
2523
"dependencies": {
2624
"assemble-handle": "^0.1.3",
27-
"is-valid-app": "^0.2.0",
28-
"lazy-cache": "^2.0.1",
29-
"match-file": "^0.2.0",
25+
"is-valid-app": "^0.2.1",
26+
"kind-of": "^3.1.0",
27+
"lazy-cache": "^2.0.2",
28+
"match-file": "^0.2.1",
3029
"src-stream": "^0.1.1",
31-
"through2": "^2.0.1"
30+
"through2": "^2.0.3"
3231
},
3332
"devDependencies": {
34-
"assemble-fs": "^0.4.7",
35-
"gulp-format-md": "^0.1.9",
36-
"mocha": "^2.5.1",
37-
"templates": "^0.18.3"
33+
"assemble-fs": "^1.0.0",
34+
"gulp-format-md": "^0.1.11",
35+
"mocha": "^3.2.0",
36+
"templates": "^1.2.6"
3837
},
3938
"keywords": [
4039
"assemble",
4140
"assembleplugin",
41+
"boilerplate",
42+
"build",
43+
"cli",
44+
"cli-app",
4245
"collection",
46+
"command-line",
47+
"create",
48+
"dev",
49+
"development",
50+
"framework",
51+
"front",
52+
"frontend",
4353
"plugin",
54+
"project",
55+
"projects",
56+
"scaffold",
57+
"scaffolder",
58+
"scaffolding",
4459
"source",
4560
"src",
4661
"stream",
4762
"streams",
48-
"vinyl"
63+
"template",
64+
"templates",
65+
"vinyl",
66+
"webapp",
67+
"yeoman",
68+
"yo"
4969
],
5070
"verb": {
5171
"run": true,

0 commit comments

Comments
 (0)