-
Notifications
You must be signed in to change notification settings - Fork 8
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 #77 from zeplin/improvements
- Added connect delete command - Added connect initialization command - Added connect add-components command - Use cosmicconfig, Fixes #35 - Implemented OAuth authentication through browser - Added --ci flag to enforce CI behaviour - Invoking the global executable will invoke the local installation if exists
- Loading branch information
Showing
108 changed files
with
6,539 additions
and
704 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 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,10 @@ | ||
#!/usr/bin/env node | ||
/* eslint-disable @typescript-eslint/no-var-requires */ | ||
const debug = require("debug")("@zeplin/cli"); | ||
const importLocal = require("import-local"); | ||
|
||
if (importLocal(__filename)) { | ||
debug("Using local install of @zeplin/cli"); | ||
} else { | ||
require("../dist/src/cli"); | ||
} |
Oops, something went wrong.