-
-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This reverts commit ca6963c. The `v1.0.0` branch was a long-running feature branch containing a large amount of disparate commits from many authors. It was squashed into a single commit prior to being merged to the project's `master` branch. For the purposes of attribution, reference, and history analysis, the composite commits should be preserved, and the branch should be incorporated into `master` via a dedicated merge commit.
- Loading branch information
1 parent
df695a4
commit e2f8436
Showing
37 changed files
with
2,059 additions
and
3,424 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,4 +7,3 @@ lib-cov | |
cover_html | ||
.c9revisions | ||
coverage | ||
/docs/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
{ | ||
"indent": 2, | ||
"eqnull": true, | ||
"laxbreak": true, | ||
"proto": true, | ||
"undef": true, | ||
"unused": true, | ||
"node": true, | ||
"quotmark": "single", | ||
"shadow": "outer" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,15 @@ | ||
language: node_js | ||
node_js: | ||
- "stable" | ||
- "8" | ||
- "unstable" | ||
- "6" | ||
- "4" | ||
- "0.12" | ||
script: make travis-test | ||
matrix: | ||
fast_finish: true | ||
allow_failures: | ||
- node_js: unstable | ||
include: | ||
- env: BENCHMARK=true | ||
script: "node benchmark/benchmark.js --regex '^(?!.*highmem)'" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,8 @@ | ||
REPORTER = dot | ||
XYZ = node_modules/.bin/xyz --message 'Release X.Y.Z' --tag X.Y.Z --repo [email protected]:cheeriojs/cheerio.git --script scripts/prepublish | ||
UPSTREAM = [email protected]:cheeriojs/cheerio.git | ||
|
||
lint: | ||
@./node_modules/.bin/eslint --ignore-path .gitignore . | ||
@./node_modules/.bin/jshint lib/ test/ | ||
|
||
test: lint | ||
@./node_modules/.bin/mocha --recursive --reporter $(REPORTER) | ||
|
@@ -37,16 +36,4 @@ release-patch: LEVEL = patch | |
release-major release-minor release-patch: | ||
@$(XYZ) --increment $(LEVEL) | ||
|
||
docs: | ||
@./node_modules/.bin/jsdoc --configure jsdoc-config.json | ||
|
||
publish-docs: docs | ||
@cd docs; \ | ||
rm -rf .git && \ | ||
git init && \ | ||
git add --all . && \ | ||
git commit -m 'Generate documentation' && \ | ||
git remote add upstream $(UPSTREAM) && \ | ||
git push --force upstream master:gh-pages | ||
|
||
.PHONY: test build setup subl docs publish-docs | ||
.PHONY: test build setup subl |
Oops, something went wrong.