-
Notifications
You must be signed in to change notification settings - Fork 1
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
Maintenance #3
Open
steelbrain
wants to merge
21
commits into
master
Choose a base branch
from
steelbrain/maintenance
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Maintenance #3
Changes from 7 commits
Commits
Show all changes
21 commits
Select commit
Hold shift + click to select a range
2c09301
:new: Add CI config
469a11d
:new: Add scripts and devDeps
2d9d299
:new: Add ESLint config
df8b303
:fire: Cleanup flow config
931f920
:minibus: interface -> decls
e0af173
:no_entry: Git ignore .DS_Store files
84bcfff
:memo: Change LICENSE to AtomDebugger Team
07096d9
:minibus: main -> index
9998b37
:arrow_up: Bump dep versions
fe5f264
:new: Run atom-package-deps properly
e251402
:art: Update author in manifest
e892696
:minibus: debugger-event-defs -> debugger-event-definitions
e4d9c09
:minibus: lib -> lib-old
fbf1189
:new: Add new package structure
21cdfa7
:new: Add more structure stuff
9cdd4cd
:fire: Cleanup manifest and dot files
08f8f17
:no_entry: Disallow publishing to npm registry
f6a296a
:fire: Cleanup manifest and commands
1cbbe88
:new: Make basic commands work
15ba149
:new: Connect wires with UI Registry
ff1524b
:arrow_up: Address reviewer's comments
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 @@ | ||
decls |
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,3 @@ | ||
{ | ||
"extends": "steelbrain" | ||
} |
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 +1,2 @@ | ||
node_modules | ||
.DS_Store |
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 |
---|---|---|
@@ -0,0 +1,21 @@ | ||
dependencies: | ||
override: | ||
- curl -L https://atom.io/download/deb -o atom-amd64.deb | ||
- sudo dpkg --install atom-amd64.deb || true | ||
- sudo apt-get update | ||
- sudo apt-get -f install | ||
- node --version | ||
- npm --version | ||
- atom --version | ||
- npm prune | ||
- npm install | ||
- apm rebuild | ||
- npm run build | ||
|
||
test: | ||
override: | ||
- npm test | ||
|
||
machine: | ||
node: | ||
version: 6.3.0 | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Probably fine to just go with |
File renamed without changes.
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,9 @@ | ||
/* @flow */ | ||
|
||
declare function it(name: string, callback: (() => void)): void; | ||
declare function fit(name: string, callback: (() => void)): void; | ||
declare function expect(value: any): Object; | ||
declare function describe(name: string, callback: (() => void)): void; | ||
declare function fdescribe(name: string, callback: (() => void)): void; | ||
declare function beforeEach(callback: (() => void)): void; | ||
declare function afterEach(callback: (() => void)): void; |
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
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.
cc @philippvr