Skip to content

Commit e9b831c

Browse files
authored
Merge pull request #44 from jairo-bc/STRF-8582
fix: STRF-8582 updated packages versions and refactored wha…
2 parents 41925de + a2ac7d8 commit e9b831c

6 files changed

Lines changed: 1779 additions & 1613 deletions

File tree

.eslintrc

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,6 @@
33
"ecmaVersion": 6,
44
"sourceType": "module"
55
},
6-
"ecmaFeatures": {
7-
"modules": true
8-
},
96
"env": {
107
"node": true
118
},

appveyor.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,8 @@
11
environment:
22
matrix:
33
- nodejs_version: "12"
4-
- nodejs_version: "11"
54
- nodejs_version: "10"
6-
- nodejs_version: "9"
75
- nodejs_version: "8"
8-
- nodejs_version: "7"
9-
- nodejs_version: "6"
106

117
platform:
128
- x86

lib/styles.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ function StencilStyles() {
160160
}
161161

162162
if (this.files[fullUrl] === undefined) {
163-
const possiblePaths = Object.keys(_.pick(this.fullUrls, val => val.indexOf(prev) !== -1));
163+
const possiblePaths = Object.keys(_.pickBy(this.fullUrls, val => val.indexOf(prev) !== -1));
164164

165165
possiblePaths.find(possiblePath => {
166166
const possibleFullUrl = path.join(path.parse(possiblePath).dir, url);

0 commit comments

Comments
 (0)