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: 1 addition & 1 deletion docker/Dockerfile-tate
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ COPY ${RESOURCES}/webpack.config.js /app/tv/
COPY yarn.lock /app/tv/
WORKDIR /app/tv/
RUN yarn && \
yarn build:prod && \
yarn build && \
yarn autoclean --init && \
echo *.ts >> .yarnclean && \
echo *.ts.map >> .yarnclean && \
Expand Down
2 changes: 1 addition & 1 deletion docker/Dockerfile-tave
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ COPY yarn.lock /app/tv/
WORKDIR /app/tv/
RUN yarn && \
yarn run download:plugins && \
yarn build:prod && \
yarn build && \
yarn autoclean --init && \
echo *.ts >> .yarnclean && \
echo *.ts.map >> .yarnclean && \
Expand Down
15 changes: 5 additions & 10 deletions docker/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,8 @@
"private": true,
"name": "docker-examples",
"version": "0.1.0",
"dependencies": {

},
"devDependencies": {
},
"dependencies": {},
"devDependencies": {},
"scripts": {
"prepare": "yarn tave",
"build": "yarn tate build && yarn tave build",
Expand All @@ -26,13 +23,11 @@
"download:server": "curl -o trace-compass-server.tar.gz https://download.eclipse.org/tracecompass.incubator/trace-server/rcp/trace-compass-server-latest-linux.gtk.x86_64.tar.gz; tar -xf trace-compass-server.tar.gz; rm trace-compass-server.tar.gz",
"start:server": "./trace-compass-server/tracecompass-server"
},
"engines": {
},
"engines": {},
"resolutions": {
"msgpackr": "^1.10.1",
"**/nan": "2.18.0"
"inversify": "6.0.2"
},
"workspaces":[
"workspaces": [
"theia-app-theia-ext",
"theia-app-vscode-ext"
]
Expand Down
14 changes: 7 additions & 7 deletions docker/theia-app-theia-ext/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,13 @@
"@emotion/react": "^11.10.5",
"@emotion/styled": "^11.10.5",
"@mui/material": "^5.10.14",
"@theia/core": "1.49.1",
"@theia/navigator": "1.49.1",
"@theia/preferences": "1.49.1",
"theia-traceviewer": "0.2.7"
"@theia/core": "1.52.0",
"@theia/navigator": "1.52.0",
"@theia/preferences": "1.52.0",
"theia-traceviewer": "0.5.0"
},
"devDependencies": {
"@theia/cli": "1.49.1"
"@theia/cli": "1.52.0"
},
"scripts": {
"build": "npx theia build --app-target=\"browser\" --mode development",
Expand All @@ -37,9 +37,9 @@
},
"engines": {
"yarn": ">=1.7.0 <2",
"node": ">=16 <19"
"node": ">=18 <21"
},
"resolutions": {
"msgpackr": "^1.10.1"

}
}
19 changes: 11 additions & 8 deletions docker/theia-app-vscode-ext/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,14 @@
"@emotion/react": "^11.10.5",
"@emotion/styled": "^11.10.5",
"@mui/material": "^5.10.14",
"@theia/core": "1.49.1",
"@theia/messages": "1.49.1",
"@theia/navigator": "1.49.1",
"@theia/preferences": "1.49.1",
"@theia/plugin-ext-vscode": "1.49.1"
"@theia/core": "1.52.0",
"@theia/messages": "1.52.0",
"@theia/navigator": "1.52.0",
"@theia/preferences": "1.52.0",
"@theia/plugin-ext-vscode": "1.52.0"
},
"devDependencies": {
"@theia/cli": "1.49.1"
"@theia/cli": "1.52.0"
},
"scripts": {
"prepare": "yarn download:plugins",
Expand All @@ -39,10 +39,13 @@
},
"engines": {
"yarn": ">=1.7.0 <2",
"node": ">=16 <19"
"node": ">=18 <21"
},
"theiaPluginsDir": "plugins",
"theiaPlugins": {
"vscode-trace-extension": "https://open-vsx.org/api/eclipse-cdt/vscode-trace-extension/0.2.9/file/eclipse-cdt.vscode-trace-extension-0.2.9.vsix"
"vscode-trace-extension": "https://open-vsx.org/api/eclipse-cdt/vscode-trace-extension/0.4.0/file/eclipse-cdt.vscode-trace-extension-0.4.0.vsix"
},
"resolutions": {

}
}
Loading
Loading