Skip to content

Commit 85a2c95

Browse files
authored
chore(renovate): maintain lockfiles (#270)
* Update renovate.json * Sync with Prettier
1 parent aa2cbe0 commit 85a2c95

File tree

6 files changed

+231
-228
lines changed

6 files changed

+231
-228
lines changed

CHANGELOG.md

Lines changed: 33 additions & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -10,170 +10,170 @@ and this project adheres to
1010

1111
### Added
1212

13-
* Support for `behavior`, `block` and `inline` options, from [the spec](https://developer.mozilla.org/en-US/docs/Web/API/Element/scrollIntoView).
14-
* `scrollMode: "if-needed" | "always"` to control the `if-needed` behavior, based on [the csswg proposal to the spec](https://github.com/w3c/csswg-drafts/pull/1805).
13+
- Support for `behavior`, `block` and `inline` options, from [the spec](https://developer.mozilla.org/en-US/docs/Web/API/Element/scrollIntoView).
14+
- `scrollMode: "if-needed" | "always"` to control the `if-needed` behavior, based on [the csswg proposal to the spec](https://github.com/w3c/csswg-drafts/pull/1805).
1515

1616
### Removed
1717

18-
* `centerIfNeeded`, use `scrollMode: "if-needed", block: "center"` instead.
19-
* `duration` to trigger animation, use [`smooth-scroll-into-view-if-needed`](https://github.com/stipsan/smooth-scroll-into-view-if-needed) instead.
20-
* `handleScroll(parent, {scrollLeft, scrollTop}, options)`, use `behavior: function(actions)` instead, where `actions` is an array of `{el, top, left}` allowing you to scroll everything in parallel or in a sequence, it's up to you.
21-
* `offset`, use wrapper elements and CSS like padding or margins instead.
18+
- `centerIfNeeded`, use `scrollMode: "if-needed", block: "center"` instead.
19+
- `duration` to trigger animation, use [`smooth-scroll-into-view-if-needed`](https://github.com/stipsan/smooth-scroll-into-view-if-needed) instead.
20+
- `handleScroll(parent, {scrollLeft, scrollTop}, options)`, use `behavior: function(actions)` instead, where `actions` is an array of `{el, top, left}` allowing you to scroll everything in parallel or in a sequence, it's up to you.
21+
- `offset`, use wrapper elements and CSS like padding or margins instead.
2222

2323
## [1.5.0] - 2018-02-25
2424

2525
### Added
2626

27-
* `sideEffects: false` in package.json to enable optimizations introduced in webpack v4.
27+
- `sideEffects: false` in package.json to enable optimizations introduced in webpack v4.
2828

2929
## [1.4.0] - 2017-11-17
3030

3131
### Added
3232

33-
* New `handleScroll` option allows customizing scrolling behavior.
33+
- New `handleScroll` option allows customizing scrolling behavior.
3434

3535
### Changed
3636

37-
* Animation logic is separated from scroll calculation logic. This allows skip
37+
- Animation logic is separated from scroll calculation logic. This allows skip
3838
importing animation dependencies and reduces bundle sizes when you don't need
3939
the built in animation feature.
4040

4141
## [1.3.0] - 2017-11-12
4242

4343
### Added
4444

45-
* New API interface (#148 @tonybdesign)
45+
- New API interface (#148 @tonybdesign)
4646

4747
## [1.2.8] - 2017-11-05
4848

4949
### Fixed
5050

51-
* Missing TypeScript definitions and rollup/webpack pkg.module files from
51+
- Missing TypeScript definitions and rollup/webpack pkg.module files from
5252
published package (#145)
5353

5454
## [1.2.7] - 2017-11-05
5555

5656
### Fixed
5757

58-
* Package published on npm contained unnecessary files bloating the package
58+
- Package published on npm contained unnecessary files bloating the package
5959
(#144)
6060

6161
## [1.2.6] - 2017-11-05
6262

6363
### Fixed
6464

65-
* Don't use postinstall as it runs in userland (#143)
65+
- Don't use postinstall as it runs in userland (#143)
6666

6767
## [1.2.5] - 2017-11-05
6868

6969
### Fixed
7070

71-
* Migrate tests to
71+
- Migrate tests to
7272
[new page](https://stipsan.github.io/scroll-into-view-if-needed/) that
7373
showcases how it works (#141)
7474

7575
## [1.2.4] - 2017-11-05
7676

7777
### Fixed
7878

79-
* TypeScript requires HTMLElement when it should accept Element (#140)
79+
- TypeScript requires HTMLElement when it should accept Element (#140)
8080

8181
## [1.2.3] - 2017-11-04
8282

8383
### Fixed
8484

85-
* Incorrect TypeScript declarations and export format (#136)
85+
- Incorrect TypeScript declarations and export format (#136)
8686

8787
## [1.2.2] - 2017-10-29
8888

8989
### Fixed
9090

91-
* Incorrect export declaration in TS typings (#132)
91+
- Incorrect export declaration in TS typings (#132)
9292

9393
## [1.2.1] - 2017-10-02
9494

9595
### Fixed
9696

97-
* Fifth option should be optional (#129)
97+
- Fifth option should be optional (#129)
9898

9999
## [1.2.0] - 2017-10-01
100100

101101
### Added
102102

103-
* Set offset feature (#127 @iwangulenko)
103+
- Set offset feature (#127 @iwangulenko)
104104

105105
## [1.1.1] - 2017-10-01
106106

107107
### Fixed
108108

109-
* Windows compatibility and CommonJS interop change back to Babel 5
109+
- Windows compatibility and CommonJS interop change back to Babel 5
110110
functionality (#121 @khell)
111111

112112
## [1.1.0] - 2017-03-29
113113

114114
### Added
115115

116-
* An optional argument finalElement was added to limit the scope of the function
116+
- An optional argument finalElement was added to limit the scope of the function
117117
(#108 @hemnstill)
118118

119119
## [1.0.7] - 2017-03-14
120120

121121
### Added
122122

123-
* MIT License (#107 @JKillian)
123+
- MIT License (#107 @JKillian)
124124

125125
### Changed
126126

127-
* Reduced size of dist build by switching from rollup to babel (#106 @JKillian)
127+
- Reduced size of dist build by switching from rollup to babel (#106 @JKillian)
128128

129129
## [1.0.6] - 2016-11-17
130130

131131
### Changed
132132

133-
* Updated typescript definition making options optional (#75 @pelotom)
133+
- Updated typescript definition making options optional (#75 @pelotom)
134134

135135
## [1.0.5] - 2016-11-12
136136

137137
### Fixed
138138

139-
* Fix TypeScript definition file issues (#74 @forabi)
139+
- Fix TypeScript definition file issues (#74 @forabi)
140140

141141
### Documentation
142142

143-
* React example snippet in readme.
143+
- React example snippet in readme.
144144

145145
## [1.0.4] - 2016-10-31
146146

147147
### Added
148148

149-
* Changelog readme.
150-
* TypeScript definition file (#73 @forabi)
149+
- Changelog readme.
150+
- TypeScript definition file (#73 @forabi)
151151

152152
## 1.0.3 - 2016-09-30
153153

154154
### Documentation
155155

156-
* link to official ponyfill page (#68 @sindresorhus)
156+
- link to official ponyfill page (#68 @sindresorhus)
157157

158158
## 1.0.2 - 2016-04-18
159159

160160
### Added
161161

162-
* Greenkeeper
162+
- Greenkeeper
163163

164164
### Fixes
165165

166-
* Incomatibility with default webpack config.
166+
- Incomatibility with default webpack config.
167167

168168
## 1.0.1 - 2016-04-18
169169

170-
* PULLED: accidentally pushed incomplete build to npm!
170+
- PULLED: accidentally pushed incomplete build to npm!
171171

172172
## 1.0.0 - 2016-04-18
173173

174174
### Added
175175

176-
* Initial release.
176+
- Initial release.
177177

178178
[unreleased]: https://github.com/stipsan/scroll-into-view-if-needed/compare/v1.5.0...HEAD
179179
[1.5.0]: https://github.com/stipsan/scroll-into-view-if-needed/compare/v1.4.0...v1.5.0

CODE_OF_CONDUCT.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -8,19 +8,19 @@ In the interest of fostering an open and welcoming environment, we as contributo
88

99
Examples of behavior that contributes to creating a positive environment include:
1010

11-
* Using welcoming and inclusive language
12-
* Being respectful of differing viewpoints and experiences
13-
* Gracefully accepting constructive criticism
14-
* Focusing on what is best for the community
15-
* Showing empathy towards other community members
11+
- Using welcoming and inclusive language
12+
- Being respectful of differing viewpoints and experiences
13+
- Gracefully accepting constructive criticism
14+
- Focusing on what is best for the community
15+
- Showing empathy towards other community members
1616

1717
Examples of unacceptable behavior by participants include:
1818

19-
* The use of sexualized language or imagery and unwelcome sexual attention or advances
20-
* Trolling, insulting/derogatory comments, and personal or political attacks
21-
* Public or private harassment
22-
* Publishing others' private information, such as a physical or electronic address, without explicit permission
23-
* Other conduct which could reasonably be considered inappropriate in a professional setting
19+
- The use of sexualized language or imagery and unwelcome sexual attention or advances
20+
- Trolling, insulting/derogatory comments, and personal or political attacks
21+
- Public or private harassment
22+
- Publishing others' private information, such as a physical or electronic address, without explicit permission
23+
- Other conduct which could reasonably be considered inappropriate in a professional setting
2424

2525
## Our Responsibilities
2626

README.md

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -231,10 +231,10 @@ Type: `Element | Function`
231231
By default there is no boundary. All the parent elements of your target is checked until it reaches the viewport (`document.documentElement`) when calculating layout and what to scroll.
232232
You can use this option to do things like:
233233

234-
* Prevent the browser window from scrolling.
235-
* Scroll things into view below the fold without scrolling to it.
236-
* Scroll elements into view in a list, without scrolling container elements.
237-
* Prematurely optimizing performance instead of code-splitting your app.
234+
- Prevent the browser window from scrolling.
235+
- Scroll things into view below the fold without scrolling to it.
236+
- Scroll elements into view in a list, without scrolling container elements.
237+
- Prematurely optimizing performance instead of code-splitting your app.
238238

239239
You can also pass a function to do more dynamic checks to override the scroll scoping:
240240

@@ -418,21 +418,21 @@ This API signature were warned to be dropped in `v2.0.0`, and it was.
418418

419419
# Related packages
420420

421-
* [smooth-scroll-into-view-if-needed](http://npmjs.com/package/smooth-scroll-into-view-if-needed) – ponyfills smooth scrolling.
422-
* [react-scroll-into-view-if-needed](https://www.npmjs.com/package/react-scroll-into-view-if-needed) – A thin wrapper to scroll your component into view.
423-
* [Don't be shy, add yours!](https://github.com/stipsan/scroll-into-view-if-needed/edit/master/README.md)
421+
- [smooth-scroll-into-view-if-needed](http://npmjs.com/package/smooth-scroll-into-view-if-needed) – ponyfills smooth scrolling.
422+
- [react-scroll-into-view-if-needed](https://www.npmjs.com/package/react-scroll-into-view-if-needed) – A thin wrapper to scroll your component into view.
423+
- [Don't be shy, add yours!](https://github.com/stipsan/scroll-into-view-if-needed/edit/master/README.md)
424424

425425
# Who's using this
426426

427-
* [zeit.co/docs](https://github.com/zeit/docs) – Documentation of ZEIT Now and other services.
428-
* [Selenium IDE](https://github.com/SeleniumHQ/selenium-ide) – An integrated development environment for Selenium scripts.
429-
* [Box UI Elements](https://github.com/box/box-ui-elements) – Box UI Elements are pre-built UI components that allow developers to add elements of the main Box web application into their own applications.
430-
* [react-responsive-ui](https://github.com/catamphetamine/react-responsive-ui) – Responsive React UI components.
431-
* [Mineral UI](https://github.com/mineral-ui/mineral-ui)
427+
- [zeit.co/docs](https://github.com/zeit/docs) – Documentation of ZEIT Now and other services.
428+
- [Selenium IDE](https://github.com/SeleniumHQ/selenium-ide) – An integrated development environment for Selenium scripts.
429+
- [Box UI Elements](https://github.com/box/box-ui-elements) – Box UI Elements are pre-built UI components that allow developers to add elements of the main Box web application into their own applications.
430+
- [react-responsive-ui](https://github.com/catamphetamine/react-responsive-ui) – Responsive React UI components.
431+
- [Mineral UI](https://github.com/mineral-ui/mineral-ui)
432432
A design system and React component library for the web that lets you quickly build high-quality, accessible apps.
433-
* [Covalent](https://github.com/Teradata/covalent) – Teradata UI Platform built on Angular Material.
434-
* [docs.expo.io](https://github.com/expo/expo-docs) – Documentation for Expo, its SDK, client and services.
435-
* [Add yourself to the list 😉](https://github.com/stipsan/scroll-into-view-if-needed/edit/master/README.md)
433+
- [Covalent](https://github.com/Teradata/covalent) – Teradata UI Platform built on Angular Material.
434+
- [docs.expo.io](https://github.com/expo/expo-docs) – Documentation for Expo, its SDK, client and services.
435+
- [Add yourself to the list 😉](https://github.com/stipsan/scroll-into-view-if-needed/edit/master/README.md)
436436

437437
[gzip-badge]: http://img.badgesize.io/https://unpkg.com/scroll-into-view-if-needed/umd/scroll-into-view-if-needed.min.js?compression=gzip&label=gzip%20size&style=flat-square
438438
[size-badge]: http://img.badgesize.io/https://unpkg.com/scroll-into-view-if-needed/umd/scroll-into-view-if-needed.min.js?label=size&style=flat-square

renovate.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,8 @@
66
":automergeRequireAllStatusChecks",
77
":prHourlyLimit4",
88
":semanticCommits",
9-
":pinDigestsDisabled"
9+
":pinDigestsDisabled",
10+
":maintainLockFilesWeekly"
1011
],
1112
"devDependencies": {
1213
"extends": ":automergeMajor"

0 commit comments

Comments
 (0)