Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
nghyd
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
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
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Cassiopée
nghyd
Commits
d7beb2b6
Commit
d7beb2b6
authored
2 years ago
by
François Grand
Browse files
Options
Downloads
Patches
Plain Diff
refactor: remove scripts/python3.js
refs
#578
parent
84b8fa7c
No related branches found
Branches containing commit
No related tags found
Tags containing commit
2 merge requests
!225
Release v4.17.0
,
!188
Resolve "Ajouter le numéro de version de Cassiopée sur la documentation"
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
package.json
+2
-2
2 additions, 2 deletions
package.json
scripts/python3.js
+0
-15
0 additions, 15 deletions
scripts/python3.js
with
2 additions
and
17 deletions
package.json
+
2
−
2
View file @
d7beb2b6
...
...
@@ -14,8 +14,8 @@
"e2e"
:
"npm run preprocess && node scripts/check-translations.js && npm run ng -- e2e --suite=regular --webdriver-update=false"
,
"e2equick"
:
"node scripts/check-translations.js && npm run ng -- e2e --dev-server-target= --suite=regular --webdriver-update=false"
,
"monkeytest"
:
"npm run ng -- e2e --dev-server-target= --suite=monkeyTest --webdriver-update=false"
,
"mkdocs"
:
"
node scripts/
python3
.js
-m mkdocs build -f mkdocs-fr.yml &&
node scripts/
python3
.js
-m mkdocs build -f mkdocs-en.yml && node scripts/mkdocs-postprocess.js"
,
"mkdocs2pdf"
:
"
node scripts/
python3
.js
mkdocs2pdf.py"
,
"mkdocs"
:
"python3 -m mkdocs build -f mkdocs-fr.yml && python3 -m mkdocs build -f mkdocs-en.yml && node scripts/mkdocs-postprocess.js"
,
"mkdocs2pdf"
:
"python3 mkdocs2pdf.py"
,
"preprocess"
:
"node scripts/preprocessors.js && node scripts/extract-nghyd-version.js docs/cassiopee_version.tex && npm run mkdocs"
,
"start"
:
"npm run preprocess && npm run ng serve -- --host 0.0.0.0 --poll 5000"
,
"build-no-pdf"
:
"npm run preprocess && npm run ng build -- --configuration production"
,
...
...
This diff is collapsed.
Click to expand it.
scripts/python3.js
deleted
100644 → 0
+
0
−
15
View file @
84b8fa7c
'
use strict
'
;
const
exec
=
require
(
"
child_process
"
).
execSync
;
const
os
=
require
(
"
os
"
);
let
py
=
"
python3
"
;
if
(
os
.
platform
()
===
"
win32
"
)
{
py
=
"
python
"
;
}
const
command
=
py
+
"
"
+
process
.
argv
.
slice
(
2
).
join
(
"
"
);
console
.
log
(
"
executing
"
,
command
);
const
ret
=
exec
(
command
);
console
.
log
(
ret
.
toString
());
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