|
Last change
on this file was 9af201e, checked in by MBK <marija.karapandzova@…>, 12 days ago |
|
Fix frontend appearance
|
-
Property mode
set to
100644
|
|
File size:
304 bytes
|
| Line | |
|---|
| 1 | import * as minimist from "minimist";
|
|---|
| 2 |
|
|---|
| 3 | const argv = minimist(process.argv.slice(2), {
|
|---|
| 4 | string: ["project"],
|
|---|
| 5 | alias: {
|
|---|
| 6 | project: ["P"],
|
|---|
| 7 | },
|
|---|
| 8 | });
|
|---|
| 9 |
|
|---|
| 10 | const project = argv && argv.project;
|
|---|
| 11 |
|
|---|
| 12 | export interface Options {
|
|---|
| 13 | cwd: string;
|
|---|
| 14 | }
|
|---|
| 15 |
|
|---|
| 16 | export const options: Options = {
|
|---|
| 17 | cwd: project || process.cwd(),
|
|---|
| 18 | };
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.