-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Rewire overwrites to use Runme GHA (#1643)
* Use Runme GHA for overwrites * Activate smart env for edge * Don't prompt * Use index deletion
- Loading branch information
1 parent
1b4a40c
commit e7c4fac
Showing
3 changed files
with
57 additions
and
10 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
--- | ||
cwd: ../../.. | ||
--- | ||
|
||
# Settings Overwrites | ||
|
||
Remove panels mostly relevant for development. | ||
|
||
```sh {"id":"01J7EZNXTG43WAYRWPFX7MHN7F","interactive":"false","name":"deactivate-panels"} | ||
npm pkg delete "contributes.views.runme[1]" # remove chat | ||
npm pkg delete "contributes.views.runme[1]" # remove search | ||
npm pkg delete "contributes.terminal" | ||
git diff package.json | ||
``` | ||
|
||
Deactivate smart env store and remove panels. | ||
|
||
```sh {"id":"01J7EZQJX1843SKQCRC7P8BHYV","interactive":"false","name":"deactivate-smartenv"} | ||
npm pkg delete "contributes.views[runme-notebook]" | ||
npm pkg delete "contributes.viewsContainers.panel" | ||
npm pkg set "contributes.configuration[0].properties[runme.experiments.smartEnvStore].default=false" --json | ||
git diff package.json | ||
``` | ||
|
||
Enable smart env store for edge/pre-release. | ||
|
||
```sh {"id":"01J7F152F569Z9QXZZEV0CW1Z6","interactive":"false","name":"activate-smartenv"} | ||
npm pkg set "contributes.configuration[0].properties[runme.experiments.smartEnvStore].default=true" --json | ||
git diff package.json | ||
``` | ||
|
||
### Reset | ||
|
||
```sh {"excludeFromRunAll":"true","id":"01J7EZQSG262FMGJAYG1W6Z3EQ"} | ||
git checkout -f package.json | ||
git diff package.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