-
Notifications
You must be signed in to change notification settings - Fork 59
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
[WIP] Aegir@next #134
Merged
Merged
[WIP] Aegir@next #134
Changes from all commits
Commits
Show all changes
39 commits
Select commit
Hold shift + click to select a range
61ad82a
feat(eslint): extract config into its own package
dignifiedquire 668f3ac
feat(browser): use uglify-es instead of uglify-js
dignifiedquire f37112c
feat(deps): update chalk and webpack
dignifiedquire c7ce0e6
refactor(lint): new cli structure for lint command
dignifiedquire 23dde2e
refactor(build): new cli structure
dignifiedquire 00c1ddc
refactor(test): new cli setup
dignifiedquire 7a6f30c
feat(build): add filesizes to output
dignifiedquire df671ba
refactor(coverage): implement new cli structure
dignifiedquire 8e7a15f
refactor(release): first pass
dignifiedquire fd0a6d8
feat: add update-notifier
dignifiedquire 97de4d1
chore: cleanup dependencies
dignifiedquire 1d0d837
start writing tests using jest
dignifiedquire 261c213
feat: coverage on travis
dignifiedquire 9790a54
more tests
dignifiedquire 65843aa
refactor(config): allow for better testability
dignifiedquire a323017
feat(coverage): allow for multiple provider publish
dignifiedquire c4a9924
feat: use different renderer on ci
dignifiedquire f87d6d3
chore: publish report to coveralls
dignifiedquire a4adb59
feat(webpack): include AEGIR_ prefixed env variables
dignifiedquire 3757c2b
refactor(docs): move to new structure
dignifiedquire 61ee9f4
fix(gitignore): add all source files
dignifiedquire 36d231d
fix: improve package.json config
dignifiedquire 5468940
feat(test): better interop and --files option
dignifiedquire 9d58062
feat: support --files on coverage and release
dignifiedquire ea6f53d
docs(readme): migration guide and updates
dignifiedquire adbfa41
fix(test): handle various test states
dignifiedquire dce396c
feat(lint): allow lint config via eslintrc
dignifiedquire 489fbb3
feat: reduce default timeout to 40s and enable it in node tests
dignifiedquire 13894a4
feat: reduce timeout and monkeypatch this.timeout
dignifiedquire a9253b1
chore: cleanup unused file
dignifiedquire 7c89411
test(browser): add test for fixtures
dignifiedquire bc20de1
test(lint): add basic test
dignifiedquire 4b1b258
chore(fixtures): move implmentation into src folder
dignifiedquire 07d3554
feat(release): include docs generation
dignifiedquire e0f716c
feat: implement hooks and fix some bugs
dignifiedquire 7b33fc0
drop old binary refs
dignifiedquire 5802b4d
no more sauce labs
dignifiedquire 847805d
docs: update readme with better migration instructions
dignifiedquire d4b8c31
feat: better patch for this.timeout
dignifiedquire File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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 @@ | ||
// Only for testing |
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,2 +1,5 @@ | ||
node_modules | ||
/coverage | ||
/dist | ||
/docs | ||
*.log |
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 |
---|---|---|
|
@@ -4,3 +4,4 @@ node_js: | |
|
||
script: | ||
- yarn lint | ||
- yarn coverage -- -u -p codecov coveralls |
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 was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,18 @@ | ||
#! /usr/bin/env node | ||
|
||
'use strict' | ||
|
||
const updateNotifier = require('update-notifier') | ||
const pkg = require('./package.json') | ||
|
||
updateNotifier({ | ||
pkg: pkg, | ||
isGlobal: false | ||
}).notify() | ||
|
||
require('yargs') // eslint-disable-line | ||
.env('AEGIR') | ||
.commandDir('cmds') | ||
.demandCommand() | ||
.help() | ||
.argv |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
what about hooks.electron and hooks.cordova? Will it be easy to extend to support those runtimes as well?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
if we support running tests in them yes