This repository has been archived by the owner on Feb 20, 2024. It is now read-only.
forked from arnog/mathlive
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #4 from lelivrescolaire/update/upstream-master
chore(upstream): update to upstream
- Loading branch information
Showing
161 changed files
with
49,016 additions
and
30,802 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,16 @@ | ||
engines: | ||
eslint: | ||
enabled: true | ||
duplication: | ||
enabled: true | ||
config: | ||
languages: | ||
- javascript: | ||
eslint: | ||
enabled: true | ||
duplication: | ||
enabled: true | ||
config: | ||
languages: | ||
- javascript: | ||
exclude_paths: | ||
- "docs/" | ||
- "dist/" | ||
- "build/" | ||
- "test/" | ||
- 'docs/' | ||
- 'dist/' | ||
- 'build/' | ||
- 'test/' | ||
ratings: | ||
paths: | ||
- "src/**/*" | ||
|
||
|
||
paths: | ||
- 'src/**/*' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
version: 1 | ||
|
||
update_configs: | ||
# Keep package.json (& lockfiles) up to date | ||
# batching pull requests weekly | ||
- package_manager: 'javascript' | ||
directory: '/' | ||
update_schedule: 'weekly' | ||
automerged_updates: | ||
- match: | ||
# Supported dependency types: | ||
# - "development" | ||
# - "production" | ||
# - "all" | ||
dependency_type: 'all' | ||
update_type: 'semver:minor' | ||
version_requirement_updates: 'increase_versions' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,107 @@ | ||
* text=auto | ||
# | ||
# Normalize text files line ending to LF in the repository | ||
# | ||
* text=auto | ||
|
||
# | ||
# Text files | ||
# | ||
|
||
*.css text | ||
*.htm text diff=html | ||
*.html text diff=html | ||
*.js text | ||
*.json text | ||
*.map text -diff | ||
# Markdown | ||
*.md text | ||
*.sass text diff=css | ||
*.scss text diff=css | ||
# shell script, always LF | ||
*.sh text eol=lf | ||
*.svg text | ||
*.ts text | ||
*.yaml text | ||
*.yml text | ||
|
||
# | ||
# Text files without extension | ||
# | ||
|
||
AUTHORS* text | ||
CHANGELOG* text | ||
CHANGES text | ||
CONTRIBUTING* text | ||
COPYING text | ||
copyright text | ||
*COPYRIGHT* text | ||
INSTALL* text | ||
license text | ||
LICENSE* text | ||
NEWS text | ||
readme text | ||
*README* text | ||
TODO text | ||
|
||
# | ||
# Configuration files | ||
# | ||
|
||
*.bowerrc text | ||
*.cnf text | ||
*.conf text | ||
*.config text | ||
.babelrc text | ||
.browserslistrc text | ||
.editorconfig text | ||
.env text | ||
.gitattributes text | ||
.gitconfig text | ||
.htaccess text | ||
*.lock text -diff | ||
package-lock.json text -diff | ||
*.npmignore text | ||
*.yaml text | ||
*.yml text | ||
browserslist text | ||
Makefile text | ||
makefile text | ||
|
||
|
||
# | ||
# Configuration files without extension | ||
# | ||
|
||
.csslintrc text | ||
.editorconfig text | ||
.eslintrc text | ||
.gitignore text | ||
.gitmodules text | ||
.htmlhintrc text | ||
.prettierignore text | ||
.jscsrc text | ||
.jshintrc text | ||
.jshintignore text | ||
.stylelintrc text | ||
|
||
|
||
# | ||
# Graphics | ||
# | ||
|
||
*.gif binary | ||
*.ico binary | ||
*.jpg binary | ||
*.jpeg binary | ||
*.png binary | ||
|
||
# | ||
# Exclude files from exporting | ||
# (used by the "download ZIP archive" option, for example) | ||
# | ||
|
||
.gitattributes export-ignore | ||
.gitignore export-ignore | ||
.gitmodules export-ignore | ||
.prettierignore export-ignore | ||
.package-lock.json export-ignore |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,3 @@ | ||
# An empty .npmignore file is necessary for the .gitignore file to be ignored | ||
# Without it, the /dist directory (which is in .gitignore) would not be | ||
# taken into account by npm. | ||
|
||
._* | ||
.DS_Store | ||
# taken into account by npm |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,37 @@ | ||
language: node_js | ||
node_js: | ||
- lts/* | ||
before_install: | ||
- '[[ $(node -v) =~ ^v9.*$ ]] || npm install -g npm@latest' # skipped when using node 9 | ||
- npm install -g greenkeeper-lockfile | ||
install: | ||
- npm install | ||
before_script: greenkeeper-lockfile-update | ||
after_script: greenkeeper-lockfile-upload | ||
node_js: [lts/*] | ||
before_install: [npm install -g npm@latest] | ||
install: [npm ci] | ||
cache: | ||
directories: | ||
- node_modules | ||
- "$HOME/.npm" | ||
directories: | ||
- node_modules | ||
- '$HOME/.npm' | ||
branches: | ||
only: | ||
- master | ||
- release | ||
- /^greenkeeper/.*$/ | ||
only: | ||
- master | ||
- /^v\d+\.\d+(\.\d+)?(-\S*)?$/ # tagged with version | ||
# - release | ||
before_deploy: | ||
- npm run dist | ||
- npm run deploy-ci | ||
deploy: | ||
provider: npm | ||
on: | ||
tags: true | ||
email: '$NPM_EMAIL' | ||
api_token: '$NPM_API_TOKEN' | ||
access: public | ||
# dry_run: true | ||
edge: true | ||
script: | ||
- npm run lint | ||
- npm run test | ||
notifications: | ||
slack: | ||
secure: dctz771vJCv6UdjBz65n8XkKx5q/LF5UIY+qSRAxLpqwFp9Y3i9trUNoSaDya4PH5sfAHbUHxsBvG8njIKDJY1pckcrCt2Ml2+9fRQ01cCMggNnSK5OlcuoL6lrnbMbaLz3XEUKJY8mfJnnHggUFNqT0IhCR4xgcxiyg90AtHhIGQcIpkFrpmwbW+ZXm7PMTP/svGkL3OMs4lDO6V8XzEGKXd+4rkcvINZwOtKDXbIf7Wm5MXQ2lf4o1DviAJeFqlIUPRRonAs2KPUAl86t+M22EWDExy6NOtmbdA68m+pDaBJ0mMN0OwxsoEJh5e7ml1/UAs82hCu+Kl3xW4emDrrF7k6C065NmWeRqLBVJxcfy+rdNsiBfJhPmBBGc0VTYLqnWR5PLxDBHgLyO7zAjG4n4G8WpCEY0j891Xaw3Cktz8tWWo336BxCmsd2zOUdoWr+aQsml25mlpLYuX2t4HR66jJdz8A7X+e5m4V3/BE+afMKhRYgeuwPVq03TBAtHZp5jLr0TCw9t3qyNrUEXGtqoAYdCThCP1zcpxTTYnxoYHgoEfiE8OVMkMf6R3JpCUQMk1+AbpyVIHeCxfaq7jCZjUG4exMGFNFhTSjl3ePoCLdwfP75uEIiQU/LOJGb2JrJWVjTEBs5P/atk71ijomygAU3D6BtYwoZm0Hqy+l8= | ||
slack: | ||
secure: dctz771vJCv6UdjBz65n8XkKx5q/LF5UIY+qSRAxLpqwFp9Y3i9trUNoSaDya4PH5sfAHbUHxsBvG8njIKDJY1pckcrCt2Ml2+9fRQ01cCMggNnSK5OlcuoL6lrnbMbaLz3XEUKJY8mfJnnHggUFNqT0IhCR4xgcxiyg90AtHhIGQcIpkFrpmwbW+ZXm7PMTP/svGkL3OMs4lDO6V8XzEGKXd+4rkcvINZwOtKDXbIf7Wm5MXQ2lf4o1DviAJeFqlIUPRRonAs2KPUAl86t+M22EWDExy6NOtmbdA68m+pDaBJ0mMN0OwxsoEJh5e7ml1/UAs82hCu+Kl3xW4emDrrF7k6C065NmWeRqLBVJxcfy+rdNsiBfJhPmBBGc0VTYLqnWR5PLxDBHgLyO7zAjG4n4G8WpCEY0j891Xaw3Cktz8tWWo336BxCmsd2zOUdoWr+aQsml25mlpLYuX2t4HR66jJdz8A7X+e5m4V3/BE+afMKhRYgeuwPVq03TBAtHZp5jLr0TCw9t3qyNrUEXGtqoAYdCThCP1zcpxTTYnxoYHgoEfiE8OVMkMf6R3JpCUQMk1+AbpyVIHeCxfaq7jCZjUG4exMGFNFhTSjl3ePoCLdwfP75uEIiQU/LOJGb2JrJWVjTEBs5P/atk71ijomygAU3D6BtYwoZm0Hqy+l8= | ||
webhooks: | ||
urls: | ||
- '$GITTER_URL' | ||
on_success: change # options: [always|never|change] default: always | ||
on_failure: always # options: [always|never|change] default: always | ||
on_start: never # options: [always|never|change] default: always |
Oops, something went wrong.