-
Notifications
You must be signed in to change notification settings - Fork 286
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #852 from neon-bindings/kv/workspaces-and-prettier
* Create a NPM workspace * Move tests to the workspace * Prettier! * Bump package versions * CI
- Loading branch information
Showing
86 changed files
with
13,012 additions
and
21,351 deletions.
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
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
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,7 @@ | ||
.git/ | ||
cli/lib/ | ||
test/cli/lib/ | ||
node_modules/ | ||
create-neon/dist/ | ||
target/ | ||
artifacts.json |
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,8 +1,13 @@ | ||
#!/usr/bin/env node | ||
|
||
require('make-promises-safe'); | ||
var CLI = require('../lib/cli.js').default; | ||
require("make-promises-safe"); | ||
var CLI = require("../lib/cli.js").default; | ||
var cli = new CLI(process.argv, process.cwd()); | ||
cli.exec() | ||
.then(function() { process.exit(0); }) | ||
.catch(function() { process.exit(1); }); | ||
cli | ||
.exec() | ||
.then(function () { | ||
process.exit(0); | ||
}) | ||
.catch(function () { | ||
process.exit(1); | ||
}); |
Oops, something went wrong.