Go to file
2023-02-06 23:44:08 +00:00
.phan
.storybook Replace incorrectly mw- prefixed classes 2022-10-25 10:28:31 -05:00
dev-scripts
i18n Localisation updates from https://translatewiki.net. 2023-02-06 08:48:56 +01:00
includes Move Log in link to overflow menu 2023-02-06 17:15:49 -06:00
resources Merge "Sticky header logout goes via API avoiding a second click" 2023-02-06 23:02:44 +00:00
screenshots
skinStyles Improve wikibase interlanguage link styles 2023-02-03 14:14:08 -05:00
stories Remove vector-menu-dropdown-noicon class 2023-01-10 23:48:05 +00:00
tests Move Log in link to overflow menu 2023-02-06 17:15:49 -06:00
.eslintignore
.eslintrc.json
.eslintrcEs6.json Search: Use Codex and Vue 3 instead of WVUI and Vue 2. 2022-07-18 12:54:47 -07:00
.gitignore build: Updating dependencies 2022-05-20 11:41:53 +00:00
.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 Allow composer/installers plugin 2022-07-18 19:24:19 -07:00
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 Improve wikibase interlanguage link styles 2023-02-03 14:14:08 -05: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.