Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Migrate to Webpack & ES6 modules #325

Merged
merged 8 commits into from
Feb 23, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ yarn-error.log*
test/unit/coverage
test/e2e/reports
selenium-debug.log
dist/
.tmp/
coverage

Expand Down
3 changes: 1 addition & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,11 @@ node_js:
- '10'
- '9'
- '8'
- '6'
install:
- npm install -g codecov
- npm install
script:
- 'grunt'
- 'npm run build'
- istanbul cover ./node_modules/mocha/bin/_mocha --reporter test -- -R spec
- codecov
branches:
Expand Down
122 changes: 0 additions & 122 deletions Gruntfile.js

This file was deleted.

2 changes: 1 addition & 1 deletion bin/htmlhint
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ var glob = require("glob");
var parseGlob = require('parse-glob');
var request = require('request');

var HTMLHint = require("../index").HTMLHint;
var HTMLHint = require("../dist/htmlhint.js").default;
var formatter = require('./formatter');
var pkg = require('../package.json');

Expand Down
1 change: 1 addition & 0 deletions dist/htmlhint.js

Large diffs are not rendered by default.

1 change: 0 additions & 1 deletion index.js

This file was deleted.

1 change: 0 additions & 1 deletion lib/htmlhint.js

This file was deleted.

Loading