Skip to content

Commit b823f37

Browse files
committed
chore: Minor update
1 parent 9152fb8 commit b823f37

File tree

9 files changed

+22
-17
lines changed

9 files changed

+22
-17
lines changed

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
The MIT License (MIT)
2-
Copyright © 2019 Rong Sen Ng (motss) <[email protected]>
2+
Copyright © 2020 Rong Sen Ng (motss) <[email protected]>
33

44
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
55

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,8 +49,8 @@
4949

5050
Please make sure that you have the following dependencies installed and setup correctly:-
5151

52-
- [Node.js][nodejs-url] >= `8.16.0`
53-
- [NPM][npm-url] >= `6.4.1`
52+
- [Node.js][nodejs-url] >= `10.18.1`
53+
- [NPM][npm-url] >= `6.13.4`
5454
- [web-component-tester][web-component-tester-url] >= 6.9.2 (See [web-component-tester section][web-component-tester-section-url] for more details.)
5555

5656
### Installation

app/templates/_LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
The MIT License (MIT)
2-
Copyright © 2019 <%= authorName %> <<%= authorEmail %>>
2+
Copyright © 2020 <%= authorName %> <<%= authorEmail %>>
33

44
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
55

app/templates/_package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -57,19 +57,19 @@
5757
"devDependencies": {
5858
"@reallyland/tsconfig": "^1.0.1",
5959
"@reallyland/tslint-config": "^1.1.1",
60-
"@types/chai": "^4.2.5",
60+
"@types/chai": "^4.2.7",
6161
"@types/mocha": "^5.2.7",
6262
"chai": "^4.2.0",
63-
"husky": "^3.0.9",
64-
"mocha": "^6.2.2",
63+
"husky": "^4.0.10",
64+
"mocha": "^7.0.0",
6565
"shx": "^0.3.2",
6666
"tslint": "^5.20.1",
67-
"typescript": "^3.7.2",
67+
"typescript": "^3.7.5",
6868
"wct-mocha": "^1.0.1"
6969
},
7070
"engines": {
71-
"node": ">= 8.16.0",
72-
"npm": ">= 6.4.1"
71+
"node": ">= 10.18.1",
72+
"npm": ">= 6.13.4"
7373
},
7474
"publishConfig": {
7575
"access": "public"

app/templates/src/test/initial-render.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { MyElement } from '../my-element.js';
22

33
import '../my-element.js';
4-
import { getShadowInnerHTML, getTestName } from './test-helpers';
4+
import { getShadowInnerHTML, getTestName } from './test-helpers.js';
55

66
const assert = chai.assert;
77
const localName = 'my-element';

app/templates/tsconfig.json

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,8 @@
33
"compilerOptions": {
44
"rootDir": "src",
55
"outDir": "dist",
6-
"declarationDir": "dist",
7-
"importHelpers": true
6+
"declarationDir": "dist"
87
},
98
"include": ["src/**/*.ts"],
10-
"exclude": ["dist"]
9+
"exclude": ["dist", "node_modules"]
1110
}

app/templates/tsconfig.prod.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
{
22
"extends": "./tsconfig.json",
3-
"exclude": ["src/test/**/*", "src/demo/**/*"]
3+
"compilerOptions": {
4+
"importHelpers": true
5+
},
6+
"include": ["src/*.ts"]
47
}

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,8 +70,8 @@
7070
"yeoman-test": "^2.1.0"
7171
},
7272
"engines": {
73-
"node": ">= 8.16.0",
74-
"npm": ">= 6.4.1"
73+
"node": ">= 10.18.1",
74+
"npm": ">= 6.13.4"
7575
},
7676
"publishConfig": {
7777
"access": "public"

tsconfig.prod.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
{
22
"extends": "./tsconfig.json",
3+
"compilerOptions": {
4+
"importHelpers": true
5+
},
36
"include": ["src/*.ts"],
47
"exclude": ["src/tests"]
58
}

0 commit comments

Comments
 (0)