Go to file
bwang 3cb6e4c505 Add columnStart container and update grid styles
Bug: T323141
Change-Id: Id6d8736922077b26fb972b6e743cf02d048e669d
2023-10-02 12:30:45 -05:00
.phan Only show notification after CentralAuth autologin on Vector 2022 2023-08-30 08:53:53 -04:00
i18n Localisation updates from https://translatewiki.net. 2023-10-02 09:23:52 +00:00
includes Add columnStart container and update grid styles 2023-10-02 12:30:45 -05:00
resources Add columnStart container and update grid styles 2023-10-02 12:30:45 -05:00
screenshots
skinStyles Apply teleport target styles to mediawiki.page.ready module 2023-08-28 22:49:31 +00:00
tests VectorComponentTableOfContentsTest: Add mocks for Message:: escaped() and rawParams() 2023-09-28 20:30:48 -04:00
.eslintignore
.eslintrc.json build: Use wikimedia/server for root folder eslint config 2023-09-04 18:13:32 +01:00
.gitignore Remove wmf-a11y dependency and tests 2023-08-17 12:38:55 -05:00
.gitreview
.nvmrc .nvmrc: Update to v16.19.1 2023-06-30 15:21:54 -04:00
.phpcs.xml
.stylelintignore
.stylelintrc.json
.svgo.config.js build: Use wikimedia/server for root folder eslint config 2023-09-04 18:13:32 +01:00
bundlesize.config.json Replace search loader indicator with Codex pending search message 2023-06-20 13:32:48 -05:00
CODE_OF_CONDUCT.md
composer.json build: Updating mediawiki/mediawiki-phan-config to 0.12.1 2023-04-28 12:08:52 +00:00
COPYING
Doxyfile
jest.config.js build: Use wikimedia/server for root folder eslint config 2023-09-04 18:13:32 +01:00
jest.setup.js build: Use wikimedia/server for root folder eslint config 2023-09-04 18:13:32 +01:00
package-lock.json build: Update devDependencies 2023-09-26 07:56:34 +01:00
package.json build: Update devDependencies 2023-09-26 07:56:34 +01:00
README.md
skin.json It should be possible to persist Vector font size for registered users 2023-09-27 20:04:22 +00:00
tsconfig.json Remove Eslint disable and TypeScript ignore rules, bump coverage 2023-04-13 00:20:44 +00:00

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.