Skip to content

Commit 3339d3b

Browse files
authored
Merge pull request #286 from angular-ui/issue-285-es5-build-fix
ES5 build fix
2 parents 17c80d5 + 9a9f4b5 commit 3339d3b

10 files changed

+19
-14
lines changed

Diff for: README.md

+3
Original file line numberDiff line numberDiff line change
@@ -478,6 +478,9 @@ Pull Request should include source code (./scr) changes, may include tests (./te
478478

479479
## Change log
480480

481+
### v1.9.1
482+
* Fixed ES5 build.
483+
481484
### v1.9.0
482485
* Webpack 5 build.
483486

Diff for: bower.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "angular-ui-scroll",
33
"description": "AngularJS infinite scrolling module",
4-
"version": "1.9.0",
4+
"version": "1.9.1",
55
"main": "./dist/ui-scroll.js",
66
"homepage": "https://github.com/angular-ui/ui-scroll.git",
77
"license": "MIT",

Diff for: dist/ui-scroll-grid.js

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: dist/ui-scroll.js

+4-4
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: dist/ui-scroll.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: dist/ui-scroll.min.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: dist/ui-scroll.min.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: package-lock.json

+3-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "angular-ui-scroll",
33
"description": "AngularJS virtual scrolling module",
4-
"version": "1.9.0",
4+
"version": "1.9.1",
55
"src": "./src/",
66
"public": "./dist/",
77
"main": "./dist/ui-scroll.js",

Diff for: webpack.config.js

+2
Original file line numberDiff line numberDiff line change
@@ -135,6 +135,8 @@ module.exports = {
135135

136136
mode: ENV,
137137

138+
target: ['web', 'es5'],
139+
138140
optimization: configEnv.optimization,
139141

140142
module: {

0 commit comments

Comments
 (0)