Skip to content

Commit 0a7e649

Browse files
authored
Allow node 12 as a min (#183)
1 parent 0acc02f commit 0a7e649

File tree

6 files changed

+9
-6
lines changed

6 files changed

+9
-6
lines changed

.github/workflows/codeql-analysis.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
name: "Code scanning"
22

33
on:
4-
push:
54
pull_request:
65
schedule:
76
- cron: '0 21 * * 4'
@@ -23,7 +22,7 @@ jobs:
2322
# the head of the pull request instead of the merge commit.
2423
- run: git checkout HEAD^2
2524
if: ${{ github.event_name == 'pull_request' }}
26-
25+
2726
# Initializes the CodeQL tools for scanning.
2827
- name: Initialize CodeQL
2928
uses: github/codeql-action/init@v1

LICENSE

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

3-
Copyright (c) 2017-2020 tclindner
3+
Copyright (c) 2017-2021 tclindner
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

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,4 +62,4 @@ Please see [CHANGELOG.md](CHANGELOG.md).
6262

6363
## License
6464

65-
Copyright (c) 2017-2020 Thomas Lindner. Licensed under the MIT license.
65+
Copyright (c) 2017-2021 Thomas Lindner. Licensed under the MIT license.

index.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,10 @@ const config = {
3737
node: '>=10.0.0',
3838
npm: '>=6.0.0',
3939
},
40+
{
41+
node: '>=12.0.0',
42+
npm: '>=6.0.0',
43+
},
4044
],
4145
],
4246
'valid-values-private': ['error', [false]],

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "npm-package-json-lint-config-tc",
3-
"version": "4.0.0",
3+
"version": "4.1.0",
44
"description": "npm-package-json-lint shareable config for TC's projects",
55
"keywords": [
66
"lint",

0 commit comments

Comments
 (0)