Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
Romain Casati
Basthon Kernel
Commits
c71a1b47
Commit
c71a1b47
authored
Feb 01, 2021
by
Romain Casati
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix: uglifyjs should not fail silently.
parent
893188cc
Pipeline
#385292
failed with stage
in 3 minutes and 8 seconds
Changes
4
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
4 additions
and
4 deletions
+4
-4
Makefile
Makefile
+1
-1
src/modules/graphviz/Makefile
src/modules/graphviz/Makefile
+1
-1
src/modules/p5/Makefile
src/modules/p5/Makefile
+1
-1
src/modules/proj4py/Makefile
src/modules/proj4py/Makefile
+1
-1
No files found.
Makefile
View file @
c71a1b47
...
...
@@ -12,7 +12,7 @@ minify: $(MINIFIED)
# this is a workaround for the buggy sources= parameter in map file
# produced by uglifyjs.terser
%.min.js
:
%.js
cd
$(
dir
$<
)
;
uglifyjs.terser
$(
notdir
$<
)
--source-map
url
=
$(
notdir
$@
)
.map
--compress
--mangle
--output
$(
notdir
$@
)
;
cd
-
cd
$(
dir
$<
)
&&
uglifyjs.terser
$(
notdir
$<
)
--source-map
url
=
$(
notdir
$@
)
.map
--compress
--mangle
--output
$(
notdir
$@
)
&&
cd
-
extern/emscripten
:
git clone
--depth
1 https://github.com/emscripten-core/emsdk.git
...
...
src/modules/graphviz/Makefile
View file @
c71a1b47
...
...
@@ -7,7 +7,7 @@ minify: $(MINIFIED)
# this is a workaround for the buggy sources= parameter in map file
# produced by uglifyjs.terser
%.min.js
:
%.js
cd
$(
dir
$<
)
;
uglifyjs.terser
$(
notdir
$<
)
--source-map
url
=
$(
notdir
$@
)
.map
--compress
--mangle
--output
$(
notdir
$@
)
;
cd
-
cd
$(
dir
$<
)
&&
uglifyjs.terser
$(
notdir
$<
)
--source-map
url
=
$(
notdir
$@
)
.map
--compress
--mangle
--output
$(
notdir
$@
)
&&
cd
-
clean
:
rm
-rf
*
.egg-info/ build/ dist/
$(MINIFIED)
...
...
src/modules/p5/Makefile
View file @
c71a1b47
...
...
@@ -7,7 +7,7 @@ minify: $(MINIFIED)
# this is a workaround for the buggy sources= parameter in map file
# produced by uglifyjs.terser
%.min.js
:
%.js
cd
$(
dir
$<
)
;
uglifyjs.terser
$(
notdir
$<
)
--source-map
url
=
$(
notdir
$@
)
.map
--compress
--mangle
--output
$(
notdir
$@
)
;
cd
-
cd
$(
dir
$<
)
&&
uglifyjs.terser
$(
notdir
$<
)
--source-map
url
=
$(
notdir
$@
)
.map
--compress
--mangle
--output
$(
notdir
$@
)
&&
cd
-
clean
:
rm
-rf
*
.egg-info/ build/ dist/
$(MINIFIED)
...
...
src/modules/proj4py/Makefile
View file @
c71a1b47
...
...
@@ -7,7 +7,7 @@ minify: $(MINIFIED)
# this is a workaround for the buggy sources= parameter in map file
# produced by uglifyjs.terser
%.min.js
:
%.js
cd
$(
dir
$<
)
;
uglifyjs.terser
$(
notdir
$<
)
--source-map
url
=
$(
notdir
$@
)
.map
--compress
--mangle
--output
$(
notdir
$@
)
;
cd
-
cd
$(
dir
$<
)
&&
uglifyjs.terser
$(
notdir
$<
)
--source-map
url
=
$(
notdir
$@
)
.map
--compress
--mangle
--output
$(
notdir
$@
)
&&
cd
-
clean
:
rm
-rf
*
.egg-info/ build/ dist/
$(MINIFIED)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment