Skip to content

Commit 1295289

Browse files
Automatically merged boilerplate update from #28
Applied 3 fixes from jaid/action-uptodater
2 parents 5f91c57 + 4bc1a0b commit 1295289

File tree

4 files changed

+17
-8
lines changed

4 files changed

+17
-8
lines changed

.eslintignore

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1-
node_modules/
21
dist/
3-
test/fixtures/
2+
/node_modules/
3+
/test/fixtures/
4+
/build/
5+
/readme/*.js

jest.config.js

Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,17 @@
11
module.exports = {
22
testEnvironment: "node",
3-
coverageDirectory: "dist/jest/coverage",
4-
collectCoverageFrom: ["src/**"],
3+
coverageDirectory: "<rootDir>/dist/jest/coverage",
4+
collectCoverageFrom: [
5+
"<rootDir>/dist/package/development/**",
6+
"!<rootDir>/node_modules/",
7+
],
8+
coverageReporters: [
9+
"text-summary",
10+
"html",
11+
],
512
testPathIgnorePatterns: [
6-
"/node_modules/",
7-
"/dist/",
13+
"<rootDir>/node_modules/",
14+
"<rootDir>/dist/",
815
],
916
moduleNameMapper: {
1017
"^root": "<rootDir>",

license.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright © 2019, Jaid <jaid.jsx@gmail.com> (github.com/jaid)
3+
Copyright © 2020, Jaid <jaid.jsx@gmail.com> (github.com/jaid)
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,4 +40,4 @@
4040
"type": "git",
4141
"url": "https://github.com/jaid/array-to-object-keys"
4242
}
43-
}
43+
}

0 commit comments

Comments
 (0)