Skip to content

Commit

Permalink
Drop grunt
Browse files Browse the repository at this point in the history
After the PR in the theme is merged
inyokaproject/theme-ubuntuusers#446
the inyoka repo needs some changes, too.
Otherwise the CI will not run successfully.
  • Loading branch information
chris34 committed Mar 14, 2021
1 parent 9d292c4 commit 7eb43df
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .jenkins/Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ pipeline {
git clean -fdx
npm install
./node_modules/grunt-cli/bin/grunt
npm run all
"""
}
}
Expand Down
4 changes: 2 additions & 2 deletions .jenkins/deploy.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ pipeline {
if ${REBUILD_STATICS}
then
npm install
./node_modules/grunt-cli/bin/grunt
npm run all
else
echo 'Not rebuildung statics'
fi
Expand All @@ -56,7 +56,7 @@ pipeline {
else
echo 'Not running migrations'
fi
if ${REBUILD_STATICS}
then
python manage.py collectstatic --noinput
Expand Down
2 changes: 1 addition & 1 deletion .jenkins/statics-build.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ pipeline {
. ../venv/bin/activate
python setup.py develop
npm install
./node_modules/grunt-cli/bin/grunt
npm run all
'''
}

Expand Down
2 changes: 1 addition & 1 deletion docs/getting_started.rst
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ Inyoka uses `less <http://lesscss.org/>`_ for creating css files. Run

.. code-block:: console
(inyoka)$ ./node_modules/grunt-cli/bin/grunt watch
(inyoka)$ npm run watch
in your theme's base directory to automatically generate the ``.css`` files.
For more information read the theme documentation.
Expand Down

0 comments on commit 7eb43df

Please sign in to comment.