2017-01-08 14:36:30 +01:00
|
|
|
#!/bin/bash
|
|
|
|
#
|
|
|
|
# This file is part of the phpBB Forum Software package.
|
|
|
|
#
|
|
|
|
# @copyright (c) phpBB Limited <https://www.phpbb.com>
|
|
|
|
# @license GNU General Public License, version 2 (GPL-2.0)
|
|
|
|
#
|
|
|
|
# For full copyright and license information, please see
|
|
|
|
# the docs/CREDITS.txt file.
|
|
|
|
#
|
|
|
|
set -e
|
2017-01-09 22:35:01 +01:00
|
|
|
set +x
|
2017-01-08 14:36:30 +01:00
|
|
|
|
2017-02-22 21:43:19 +01:00
|
|
|
NOTESTS=$1
|
2017-01-08 14:36:30 +01:00
|
|
|
|
|
|
|
if [ "$NOTESTS" == '1' ]
|
|
|
|
then
|
2017-01-09 22:35:01 +01:00
|
|
|
npm install -g > /dev/null
|
|
|
|
npm install > /dev/null
|
|
|
|
set -x
|
2019-01-02 17:43:23 +01:00
|
|
|
node_modules/stylelint/bin/stylelint.js "phpBB/styles/prosilver/theme/*.css"
|
2017-03-07 21:14:28 +01:00
|
|
|
# Disable admin stylelint for now
|
2019-01-02 17:43:23 +01:00
|
|
|
node_modules/stylelint/bin/stylelint.js "phpBB/adm/style/*.css"
|
2017-01-08 14:36:30 +01:00
|
|
|
fi
|