-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* check types when build SDK * updated lerna to 8 * removed @lerna/publish * fixed type issue * removed --bail option for lerna * Does this config work * Use correct nx version * Update package.json Co-authored-by: Vincent Song <[email protected]> * Force the pipeilne to fail * Bring back working state * Set correct version of nx * Update some libs to ensure things work * Check if this works --------- Co-authored-by: wenfeng song <[email protected]>
- Loading branch information
1 parent
83b194e
commit f08ae97
Showing
13 changed files
with
11,067 additions
and
38,890 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,13 @@ | ||
{ | ||
"packages": [ | ||
"packages/*" | ||
"@millicast/sdk", | ||
"millicast-chromecast-receiver", | ||
"millicast-multiview-demo", | ||
"millicast-publisher-demo", | ||
"millicast-viewer-demo", | ||
"millicast-webaudio-delay-demo" | ||
], | ||
"useWorkspaces": true, | ||
"npmClient": "npm", | ||
"useNx": true, | ||
"version": "0.1.40" | ||
} |
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,85 @@ | ||
{ | ||
"tasksRunnerOptions": { | ||
"default": { | ||
"runner": "nx/tasks-runners/default", | ||
"options": { | ||
"cacheableOperations": [ | ||
"build", | ||
"test", | ||
"lint", | ||
"lint:format", | ||
"prepare", | ||
"build-docs", | ||
"test-unit", | ||
"test-unit-coverage", | ||
"test-e2e", | ||
"test-all" | ||
] | ||
} | ||
} | ||
}, | ||
"targetDefaults": { | ||
"test": { | ||
"dependsOn": [ | ||
"^test" | ||
], | ||
"inputs": [ | ||
"{projectRoot}/**/*", | ||
"!{projectRoot}/**/*.md" | ||
], | ||
"cache": true | ||
}, | ||
"prepare": { | ||
"dependsOn": [ | ||
"^prepare" | ||
], | ||
"cache": true | ||
}, | ||
"preview": { | ||
"dependsOn": [ | ||
"^preview" | ||
] | ||
}, | ||
"build:watch": { | ||
"dependsOn": [ | ||
"^build:watch" | ||
] | ||
}, | ||
"build": { | ||
"outputs": [ | ||
"{projectRoot}//**/dist/*" | ||
], | ||
"cache": true, | ||
"dependsOn": [] | ||
}, | ||
"start": { | ||
"dependsOn": [] | ||
}, | ||
"build-docs": { | ||
"cache": true, | ||
"dependsOn": [] | ||
}, | ||
"start-docs": { | ||
"dependsOn": [] | ||
}, | ||
"test-unit": { | ||
"cache": true, | ||
"dependsOn": [] | ||
}, | ||
"test-unit-coverage": { | ||
"cache": true, | ||
"dependsOn": [] | ||
}, | ||
"test-e2e": { | ||
"cache": true, | ||
"dependsOn": [] | ||
}, | ||
"test-all": { | ||
"cache": true, | ||
"dependsOn": [] | ||
} | ||
}, | ||
"affected": { | ||
"defaultBase": "main" | ||
} | ||
} |
Oops, something went wrong.