Skip to content

Commit 5f3f7c8

Browse files
authored
Merge pull request #300 from lsst-ts/release/5.0.0
Release/5.0.0
2 parents 7be8788 + 0390360 commit 5f3f7c8

File tree

79 files changed

+1565
-591
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

79 files changed

+1565
-591
lines changed

.pre-commit-config.yaml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,12 @@ repos:
99
rev: v2.2.1
1010
hooks:
1111
- id: prettier
12-
types: [javascript]
12+
files: \.[j]sx?$ # *.js and *.jsx
13+
types: [file]
1314

1415
- repo: https://github.com/pre-commit/mirrors-eslint
1516
rev: v7.19.0
1617
hooks:
17-
- id: eslint
18+
- id: eslint
19+
files: \.[j]sx?$ # *.js and *.jsx
20+
types: [file]

Jenkinsfile

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ pipeline {
1717
branch "bugfix/*"
1818
branch "hotfix/*"
1919
branch "release/*"
20+
branch "tickets/*"
2021
}
2122
}
2223
steps {
@@ -27,7 +28,7 @@ pipeline {
2728
if (slashPosition > 0) {
2829
git_tag = git_branch.substring(slashPosition + 1, git_branch.length())
2930
git_branch = git_branch.substring(0, slashPosition)
30-
if (git_branch == "release" || git_branch == "hotfix" || git_branch == "bugfix") {
31+
if (git_branch == "release" || git_branch == "hotfix" || git_branch == "bugfix" || git_branch == "tickets") {
3132
image_tag = git_tag
3233
}
3334
}
@@ -45,6 +46,7 @@ pipeline {
4546
branch "bugfix/*"
4647
branch "hotfix/*"
4748
branch "release/*"
49+
branch "tickets/*"
4850
}
4951
}
5052
steps {

love/package.json

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
"html2canvas": "^1.0.0-rc.5",
1818
"lodash": "^4.17.19",
1919
"lodash.throttle": "^4.1.1",
20+
"lodash.debounce": "^4.0.8",
2021
"luxon": "^1.23.0",
2122
"ml-matrix": "^6.5.0",
2223
"moment-range": "^4.0.0",
@@ -45,6 +46,7 @@
4546
"redux-logger": "^3.0.6",
4647
"redux-thunk": "^2.3.0",
4748
"redux-undo": "^1.0.0",
49+
"remarkable": "^2.0.1",
4850
"reselect": "^4.0.0",
4951
"resize-observer-polyfill": "^1.5.1",
5052
"rfdc": "^1.1.4",

0 commit comments

Comments
 (0)