Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Cesium
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
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
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
bpresles
Cesium
Commits
f02566cf
Commit
f02566cf
authored
5 years ago
by
Benoit Lavenier
Browse files
Options
Downloads
Patches
Plain Diff
[fix] Fix Android and iOS compilation (keep fonts)
parent
9f65862d
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
hooks/after_prepare/050_clean_unused_directories.js
+13
-27
13 additions, 27 deletions
hooks/after_prepare/050_clean_unused_directories.js
hooks/after_prepare/061_prepare_ubuntu_config.js
+0
-38
0 additions, 38 deletions
hooks/after_prepare/061_prepare_ubuntu_config.js
with
13 additions
and
65 deletions
hooks/after_prepare/050_clean_unused_directories.js
+
13
−
27
View file @
f02566cf
#!/usr/bin/env node
#!/usr/bin/env node
"
use strict
"
;
"
use strict
"
;
var
gulp
=
require
(
'
gulp
'
);
var
gulp
=
require
(
'
gulp
'
);
var
gutil
=
require
(
'
gulp-util
'
);
var
allConfig
=
require
(
'
../../app/config.json
'
);
var
path
=
require
(
"
path
"
);
var
path
=
require
(
"
path
"
);
var
del
=
require
(
'
del
'
);
var
del
=
require
(
'
del
'
);
var
cmd
=
process
.
env
.
CORDOVA_CMDLINE
;
var
cmd
=
process
.
env
.
CORDOVA_CMDLINE
;
var
rootdir
=
process
.
argv
[
2
];
var
rootdir
=
process
.
argv
[
2
];
var
argv
=
require
(
'
yargs
'
).
argv
;
var
skip
=
true
;
var
skip
=
true
;
if
(
cmd
.
indexOf
(
"
--release
"
)
>
-
1
||
cmd
.
indexOf
(
"
--useref
"
)
>
-
1
)
{
if
(
cmd
.
indexOf
(
"
--release
"
)
>
-
1
||
cmd
.
indexOf
(
"
--useref
"
)
>
-
1
)
{
...
@@ -25,7 +22,7 @@ if (rootdir && !skip) {
...
@@ -25,7 +22,7 @@ if (rootdir && !skip) {
var
platform
=
platforms
[
x
].
trim
().
toLowerCase
();
var
platform
=
platforms
[
x
].
trim
().
toLowerCase
();
var
wwwPath
;
var
wwwPath
;
if
(
platform
==
'
android
'
)
{
if
(
platform
==
=
'
android
'
)
{
wwwPath
=
path
.
join
(
rootdir
,
'
platforms
'
,
platform
,
'
assets
'
,
'
www
'
);
wwwPath
=
path
.
join
(
rootdir
,
'
platforms
'
,
platform
,
'
assets
'
,
'
www
'
);
}
else
{
}
else
{
wwwPath
=
path
.
join
(
rootdir
,
'
platforms
'
,
platform
,
'
www
'
);
wwwPath
=
path
.
join
(
rootdir
,
'
platforms
'
,
platform
,
'
www
'
);
...
@@ -35,41 +32,30 @@ if (rootdir && !skip) {
...
@@ -35,41 +32,30 @@ if (rootdir && !skip) {
//console.log('['+process.mainModule.filename+'] Cleaning unused directories');
//console.log('['+process.mainModule.filename+'] Cleaning unused directories');
// Clean unused directories
// Clean unused directories
del
([
del
.
sync
([
path
.
join
(
wwwPath
,
'
i18n
'
),
path
.
join
(
wwwPath
,
'
i18n
'
),
path
.
join
(
wwwPath
,
'
js
'
),
path
.
join
(
wwwPath
,
'
js
'
),
path
.
join
(
wwwPath
,
'
templates
'
),
path
.
join
(
wwwPath
,
'
templates
'
),
path
.
join
(
wwwPath
,
'
css
'
),
path
.
join
(
wwwPath
,
'
css
'
),
path
.
join
(
wwwPath
,
'
dist
'
),
path
.
join
(
wwwPath
,
'
dist
'
),
path
.
join
(
wwwPath
,
'
js
'
),
path
.
join
(
wwwPath
,
'
cordova-js-src
'
),
path
.
join
(
wwwPath
,
'
cordova-js-src
'
),
path
.
join
(
wwwPath
,
'
plugins
'
,
'
es
'
),
path
.
join
(
wwwPath
,
'
plugins
'
,
'
es
'
),
path
.
join
(
wwwPath
,
'
plugins
'
,
'
graph
'
),
path
.
join
(
wwwPath
,
'
plugins
'
,
'
graph
'
),
path
.
join
(
wwwPath
,
'
plugins
'
,
'
map
'
),
path
.
join
(
wwwPath
,
'
plugins
'
,
'
map
'
),
path
.
join
(
wwwPath
,
'
plugins
'
,
'
rml9
'
),
path
.
join
(
wwwPath
,
'
plugins
'
,
'
rml9
'
),
path
.
join
(
wwwPath
,
'
lib
'
,
'
**
'
),
// Keep Ionic lib/ionic/fonts directory
// Clean lib directory...
'
!
'
+
path
.
join
(
wwwPath
,
'
lib
'
),
path
.
join
(
wwwPath
,
'
lib
'
,
'
*
'
),
// ...but keep Ionic fonts directory
'
!
'
+
path
.
join
(
wwwPath
,
'
lib
'
,
'
ionic
'
),
'
!
'
+
path
.
join
(
wwwPath
,
'
lib
'
,
'
ionic
'
),
path
.
join
(
wwwPath
,
'
lib
'
,
'
ionic
'
,
'
*
'
),
'
!
'
+
path
.
join
(
wwwPath
,
'
lib
'
,
'
ionic
'
,
'
fonts
'
),
'
!
'
+
path
.
join
(
wwwPath
,
'
lib
'
,
'
ionic
'
,
'
fonts
'
),
'
!
'
+
path
.
join
(
wwwPath
,
'
lib
'
,
'
ionic
'
,
'
fonts
'
,
'
**
'
),
'
!
'
+
path
.
join
(
wwwPath
,
'
lib
'
,
'
ionic
'
,
'
fonts
'
,
'
robotdraft
'
),
// ...and keep Robotodraft fonts directory
'
!
'
+
path
.
join
(
wwwPath
,
'
lib
'
,
'
ionic
'
,
'
fonts
'
,
'
robotdraft
'
,
'
Black
'
),
'
!
'
+
path
.
join
(
wwwPath
,
'
lib
'
,
'
robotdraft
'
),
'
!
'
+
path
.
join
(
wwwPath
,
'
lib
'
,
'
ionic
'
,
'
fonts
'
,
'
robotdraft
'
,
'
Black
'
,
'
**
'
),
path
.
join
(
wwwPath
,
'
lib
'
,
'
robotdraft
'
,
'
*
'
),
'
!
'
+
path
.
join
(
wwwPath
,
'
lib
'
,
'
ionic
'
,
'
fonts
'
,
'
robotdraft
'
,
'
Bold
'
),
'
!
'
+
path
.
join
(
wwwPath
,
'
lib
'
,
'
robotdraft
'
,
'
fonts
'
),
'
!
'
+
path
.
join
(
wwwPath
,
'
lib
'
,
'
ionic
'
,
'
fonts
'
,
'
robotdraft
'
,
'
Bold
'
,
'
**
'
),
'
!
'
+
path
.
join
(
wwwPath
,
'
lib
'
,
'
ionic
'
,
'
fonts
'
,
'
robotdraft
'
,
'
BoldItalic
'
),
'
!
'
+
path
.
join
(
wwwPath
,
'
lib
'
,
'
ionic
'
,
'
fonts
'
,
'
robotdraft
'
,
'
BoldItalic
'
,
'
**
'
),
'
!
'
+
path
.
join
(
wwwPath
,
'
lib
'
,
'
ionic
'
,
'
fonts
'
,
'
robotdraft
'
,
'
Italic
'
),
'
!
'
+
path
.
join
(
wwwPath
,
'
lib
'
,
'
ionic
'
,
'
fonts
'
,
'
robotdraft
'
,
'
Italic
'
,
'
**
'
),
'
!
'
+
path
.
join
(
wwwPath
,
'
lib
'
,
'
ionic
'
,
'
fonts
'
,
'
robotdraft
'
,
'
Light
'
),
'
!
'
+
path
.
join
(
wwwPath
,
'
lib
'
,
'
ionic
'
,
'
fonts
'
,
'
robotdraft
'
,
'
Light
'
,
'
**
'
),
'
!
'
+
path
.
join
(
wwwPath
,
'
lib
'
,
'
ionic
'
,
'
fonts
'
,
'
robotdraft
'
,
'
Medium
'
),
'
!
'
+
path
.
join
(
wwwPath
,
'
lib
'
,
'
ionic
'
,
'
fonts
'
,
'
robotdraft
'
,
'
Medium
'
,
'
**
'
),
'
!
'
+
path
.
join
(
wwwPath
,
'
lib
'
,
'
ionic
'
,
'
fonts
'
,
'
robotdraft
'
,
'
Regular
'
),
'
!
'
+
path
.
join
(
wwwPath
,
'
lib
'
,
'
ionic
'
,
'
fonts
'
,
'
robotdraft
'
,
'
Regular
'
,
'
**
'
),
'
!
'
+
path
.
join
(
wwwPath
,
'
lib
'
,
'
ionic
'
,
'
fonts
'
,
'
robotdraft
'
,
'
Thin
'
),
'
!
'
+
path
.
join
(
wwwPath
,
'
lib
'
,
'
ionic
'
,
'
fonts
'
,
'
robotdraft
'
,
'
Thin
'
,
'
**
'
)
]);
]);
}
}
}
}
...
...
This diff is collapsed.
Click to expand it.
hooks/after_prepare/061_prepare_ubuntu_config.js
deleted
100755 → 0
+
0
−
38
View file @
9f65862d
#!/usr/bin/env node
"
use strict
"
;
var
gulp
=
require
(
'
gulp
'
);
var
path
=
require
(
"
path
"
);
var
replace
=
require
(
'
gulp-replace
'
);
var
rootdir
=
process
.
argv
[
2
];
if
(
rootdir
)
{
// go through each of the platform directories that have been prepared
var
platforms
=
(
process
.
env
.
CORDOVA_PLATFORMS
?
process
.
env
.
CORDOVA_PLATFORMS
.
split
(
'
,
'
)
:
[]);
for
(
var
x
=
0
;
x
<
platforms
.
length
;
x
++
)
{
var
platform
=
platforms
[
x
].
trim
().
toLowerCase
();
if
(
platform
==
'
ubuntu
'
)
{
var
platformPath
=
path
.
join
(
rootdir
,
'
platforms
'
,
platform
);
var
ionicConfigFile
=
path
.
join
(
platformPath
,
'
config.xml
'
);
// Clean unused directories
console
.
log
(
'
-----------------------------------------
'
);
console
.
log
(
'
Updating file:
'
+
ionicConfigFile
);
gulp
.
src
(
ionicConfigFile
)
// change App ID into 'duniter-cesium'
.
pipe
(
replace
(
/id="fr.duniter.cesium"/g
,
'
id="cesium"
'
))
.
pipe
(
gulp
.
dest
(
platformPath
));
console
.
log
(
'
-----------------------------------------
'
);
}
}
}
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