File tree 5 files changed +11
-4
lines changed
5 files changed +11
-4
lines changed Original file line number Diff line number Diff line change 17
17
- name : Install dependencies and build 🔧
18
18
run : yarn --frozen-lockfile && yarn build
19
19
- name : Publish package on NPM 📦
20
- run : npm publish --tag beta
20
+ run : npm publish
21
+ # run: npm publish --tag beta
21
22
env :
22
23
NODE_AUTH_TOKEN : ${{ secrets.NPM_TOKEN }}
Original file line number Diff line number Diff line change 2
2
3
3
## [ Unreleased]
4
4
5
+ ## [ 2.0.0] - 2023-10-10
6
+
7
+ > Included whole changes from the 2.0.0-beta.1
8
+
9
+ ### Fixed
10
+ - Fixed issue with FL/CRLF line breaks in the documentation file
5
11
6
12
## [ 2.0.0-beta.1] - 2023-10-08
7
13
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " mockoon-config-transformer" ,
3
3
"description" : " A CLI tool to bundle/extract Mockoon environment files in a git-friendly files tree with 100% backward compatibility" ,
4
- "version" : " 2.0.0-beta.1 " ,
4
+ "version" : " 2.0.0" ,
5
5
"type" : " module" ,
6
6
"files" : [
7
7
" dist"
Original file line number Diff line number Diff line change 1
1
export const name = 'mockoon-config-transformer' ;
2
- export const version = '2.0.0-beta.1 ' ;
2
+ export const version = '2.0.0' ;
3
3
4
4
export const SUPPORTED_MIGRATION = 28 ;
5
5
export const SUPPORTED_COMMANDS = {
Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ export const heading = (
28
28
] ;
29
29
30
30
export const lineBreak = ( count ?: number ) : Text [ ] =>
31
- new Array ( count || 1 ) . fill ( { type : 'text' , value : '\r\ n' } ) ;
31
+ new Array ( count || 1 ) . fill ( { type : 'text' , value : '\n' } ) ;
32
32
33
33
export type docSectionItem = {
34
34
title : string ;
You can’t perform that action at this time.
0 commit comments