Go to file
Jon Robson 8173c91a4e Limited width made persistent for anonymous users
Depends-On: Ic3b6eec19953932c697ab5bf48c33a4ac1841b07
Bug: T321498
Change-Id: I141a744abe7528203e6e05bf89ea225125319eb4
2023-01-25 17:51:02 +00:00
.phan
.storybook
dev-scripts
i18n Localisation updates from https://translatewiki.net. 2023-01-24 08:51:58 +01:00
includes Moves feature classes from BODY element to HTML element 2023-01-24 18:22:13 -06:00
resources Limited width made persistent for anonymous users 2023-01-25 17:51:02 +00:00
screenshots
skinStyles Fix font-size adjustments for narrow width 2023-01-23 09:21:19 +00:00
stories Remove vector-menu-dropdown-noicon class 2023-01-10 23:48:05 +00:00
tests Disable headless puppeteer for a11y testing 2023-01-24 16:55:35 -06:00
.eslintignore
.eslintrc.json
.eslintrcEs6.json
.gitignore
.gitreview
.nvmrc
.phpcs.xml
.stylelintignore
.stylelintrc.json
.svgo.config.js
bundlesize.config.json Moves feature classes from BODY element to HTML element 2023-01-24 18:22:13 -06:00
CODE_OF_CONDUCT.md
composer.json
COPYING
Doxyfile
jest.config.js Limited width toggle 2022-11-01 16:29:43 +00:00
jest.setup.js Limited width toggle 2022-11-01 16:29:43 +00:00
jsdoc.json Override PinnableElement behaviour at low resolutions. 2023-01-13 18:09:11 +00:00
package-lock.json build: Upgrade test versions of Codex things from 0.2.2 to 0.4.2 2023-01-09 13:22:47 -05:00
package.json Update tableOfContents.js to rerender only the TOC contents rather than the entire pinnable element 2023-01-16 12:39:05 +01:00
README.md
skin.json Limited width made persistent for anonymous users 2023-01-25 17:51:02 +00:00
tsconfig.json

Vector Skin

Installation

See https://www.mediawiki.org/wiki/Skin:Vector.

Configuration options

See skin.json.

Development

Node version

It is recommended to use nvm to use the version of node defined in .nvmrc during local development. This ensures consistency amongst development environments.

Coding conventions

We strive for compliance with MediaWiki conventions:

https://www.mediawiki.org/wiki/Manual:Coding_conventions

Additions and deviations from those conventions that are more tailored to this project are noted at:

https://www.mediawiki.org/wiki/Reading/Web/Coding_conventions

Pre-commit tests

A pre-commit hook is installed when executing npm install. By default, it runs npm test which is useful for automatically validating everything that can be in a reasonable amount of time. If you wish to defer these tests to be executed by continuous integration only, set the PRE_COMMIT environment variable to 0:

$ export PRE_COMMIT=0
$ git commit

Or more succinctly:

$ PRE_COMMIT=0 git commit

Skipping the pre-commit tests has no impact on Gerrit change identifier hooks.

Hooks

See hooks.txt.