Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
D
deadlock-desktop
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
deadlock-public
deadlock-desktop
Commits
2fab32c0
Commit
2fab32c0
authored
3 years ago
by
Alexandra
Browse files
Options
Downloads
Patches
Plain Diff
fix: recorder building
parent
8579a240
No related branches found
No related tags found
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
.gitignore
+0
-1
0 additions, 1 deletion
.gitignore
Dockerfile
+1
-2
1 addition, 2 deletions
Dockerfile
build-recorder.sh
+1
-0
1 addition, 0 deletions
build-recorder.sh
recorder-out/webpack.config.js
+0
-18
0 additions, 18 deletions
recorder-out/webpack.config.js
with
2 additions
and
21 deletions
.gitignore
+
0
−
1
View file @
2fab32c0
...
...
@@ -2,7 +2,6 @@ out/
.idea/
recorder-out/*
!recorder-out/webpack.config.js
plugins/**/*.vsix
!plugins/gitlens-*.vsix
deadlock-plugins/**/*.vsix
...
...
This diff is collapsed.
Click to expand it.
Dockerfile
+
1
−
2
View file @
2fab32c0
...
...
@@ -14,8 +14,7 @@ RUN chown theia /home/plugins -R
COPY
server.js /home/theia/src-gen/backend/server.js
COPY
recorder-out/dist/main.js deadlock/recorder.js
COPY
recorder-out/dist/preStop.js deadlock/preStop.js
COPY
recorder-out/ deadlock/
COPY
.gitignore_recorder deadlock/.gitignore
COPY
setup_trace.py .
...
...
This diff is collapsed.
Click to expand it.
build-recorder.sh
+
1
−
0
View file @
2fab32c0
...
...
@@ -11,6 +11,7 @@ npm run build-recorder
npm run build-preStop
cd
-
mkdir
-p
$OUTPUT_DIR
cp
-r
./deadlock-plugins/deadlock-extension/out/recorder.js
$OUTPUT_DIR
cp
-r
./deadlock-plugins/deadlock-extension/out/preStop.js
$OUTPUT_DIR
...
...
This diff is collapsed.
Click to expand it.
recorder-out/webpack.config.js
deleted
100644 → 0
+
0
−
18
View file @
8579a240
const
path
=
require
(
'
path
'
);
const
TerserPlugin
=
require
(
"
terser-webpack-plugin
"
);
module
.
exports
=
{
entry
:
{
main
:
'
./recorder/index.js
'
,
preStop
:
'
./recorder/preStop.js
'
,
},
target
:
'
node
'
,
output
:
{
filename
:
'
[name].js
'
,
path
:
path
.
resolve
(
__dirname
,
'
dist
'
),
},
optimization
:
{
minimize
:
true
,
minimizer
:
[
new
TerserPlugin
()],
},
};
\ No newline at end of file
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment