Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,8 @@ jobs:

- name: Micromamba needed for cockle_wasm_env
uses: mamba-org/setup-micromamba@main
with:
micromamba-version: '2.0.5-0'

- name: Install dependencies
working-directory: ui-tests
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,8 @@ jobs:

- name: Micromamba needed for cockle_wasm_env
uses: mamba-org/setup-micromamba@main
with:
micromamba-version: '2.0.5-0'

- name: Build the JupyterLite site
working-directory: deploy
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/update-integration-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,8 @@ jobs:

- name: Micromamba needed for cockle_wasm_env
uses: mamba-org/setup-micromamba@main
with:
micromamba-version: '2.0.5-0'

- name: Install dependencies
working-directory: ui-tests
Expand Down
17 changes: 8 additions & 9 deletions deploy/cockle-config-in.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
[
{
"package": "lua"
{
"packages": {
"lua": {},
"tree": {},
"vim": {}
},
{
"package": "tree"
},
{
"package": "vim"
"aliases": {
"vi": "vim"
}
]
}
2 changes: 1 addition & 1 deletion deploy/deploy.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

yum install wget -y

wget -qO- https://micro.mamba.pm/api/micromamba/linux-64/latest | tar -xvj bin/micromamba
wget -qO- https://micro.mamba.pm/api/micromamba/linux-64/2.0.5 | tar -xvj bin/micromamba

export PATH="$PWD/bin:$PATH"
export MAMBA_ROOT_PREFIX="$PWD/micromamba"
Expand Down
3 changes: 2 additions & 1 deletion jupyterlite_terminal/add_on.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,9 +41,10 @@ def post_build(self, manager):
for source in f:
source = Path(source.strip())
basename = source.name
packageName = next(f).strip()
yield dict(
name=f"copy:{basename}",
actions=[(self.copy_one, [source, assetDir / basename])],
actions=[(self.copy_one, [source, assetDir / packageName / basename])],
)

os.remove(tempFilename)
18 changes: 9 additions & 9 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -57,19 +57,19 @@
"watch:labextension": "jupyter labextension watch ."
},
"dependencies": {
"@jupyterlab/coreutils": "^6.3.4",
"@jupyterlab/services": "^7.3.4",
"@jupyterlab/terminal": "^4.3.4",
"@jupyterlab/terminal-extension": "^4.3.4",
"@jupyterlite/cockle": "^0.0.13",
"@jupyterlite/contents": "^0.5.0",
"@jupyterlite/server": "^0.5.0",
"@jupyterlab/coreutils": "^6.3.5",
"@jupyterlab/services": "^7.3.5",
"@jupyterlab/terminal": "^4.3.5",
"@jupyterlab/terminal-extension": "^4.3.5",
"@jupyterlite/cockle": "^0.0.15",
"@jupyterlite/contents": "^0.5.1",
"@jupyterlite/server": "^0.5.1",
"@lumino/coreutils": "^2.2.0",
"mock-socket": "^9.3.1"
},
"devDependencies": {
"@jupyterlab/builder": "^4.3.4",
"@jupyterlab/testutils": "^4.3.4",
"@jupyterlab/builder": "^4.3.5",
"@jupyterlab/testutils": "^4.3.5",
"@types/jest": "^29.2.0",
"@types/json-schema": "^7.0.11",
"@types/react": "^18.0.26",
Expand Down
Loading
Loading