File tree 3 files changed +16
-7
lines changed
3 files changed +16
-7
lines changed Original file line number Diff line number Diff line change 28
28
node-version : 12
29
29
registry-url : https://registry.npmjs.org/
30
30
- run : yarn
31
- - run : yarn compile
32
31
- run : npm publish
33
32
env :
34
33
NODE_AUTH_TOKEN : ${{secrets.NPM_TOKEN}}
Original file line number Diff line number Diff line change @@ -5,6 +5,16 @@ All notable changes to this project will be documented in this file.
5
5
The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) ,
6
6
and this project adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
7
7
8
+ ## [ 1.2.0] - 2020-05-24
9
+
10
+ ### Added
11
+
12
+ - Explicitly list supported node versions
13
+
14
+ ### Fixed
15
+
16
+ - Node conditional exports paths
17
+
8
18
## [ 1.1.0] - 2020-05-24
9
19
10
20
### Fixed
@@ -62,6 +72,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
62
72
63
73
- Fix linter crash on accessing node key name
64
74
75
+ [ 1.2.0 ] : https://github.com/infctr/eslint-plugin-typescript-sort-keys/compare/v1.1.0...v1.2.0
65
76
[ 1.1.0 ] : https://github.com/infctr/eslint-plugin-typescript-sort-keys/compare/v1.0.2...v1.1.0
66
77
[ 1.0.2 ] : https://github.com/infctr/eslint-plugin-typescript-sort-keys/compare/v1.0.1...v1.0.2
67
78
[ 1.0.1 ] : https://github.com/infctr/eslint-plugin-typescript-sort-keys/compare/v1.0.0...v1.0.1
Original file line number Diff line number Diff line change 9
9
" typescript"
10
10
],
11
11
"author" : " infctr <infctr@gmail.com>" ,
12
- "main" : " lib/index.cjs.js" ,
13
- "module" : " lib/index.esm.js" ,
12
+ "main" : " ./lib/index.cjs.js" ,
14
13
"repository" : " git@github.com:infctr/eslint-plugin-typescript-sort-keys.git" ,
15
14
"url" : " https://github.com/infctr/eslint-plugin-typescript-sort-keys" ,
16
15
"files" : [
21
20
" README.md"
22
21
],
23
22
"exports" : {
24
- "import" : " lib/index.esm.js" ,
25
- "require" : " lib/index.cjs.js" ,
26
- "default" : " lib/index.cjs.js"
23
+ "import" : " ./ lib/index.esm.js" ,
24
+ "require" : " ./ lib/index.cjs.js" ,
25
+ "default" : " ./ lib/index.cjs.js"
27
26
},
28
27
"scripts" : {
29
28
"prepublishOnly" : " yarn compile" ,
91
90
"typescript" : " ^3"
92
91
},
93
92
"engines" : {
94
- "node" : " >=8.3.0 "
93
+ "node" : " 10 - 12 || >= 13.9 "
95
94
},
96
95
"license" : " ISC"
97
96
}
You can’t perform that action at this time.
0 commit comments