Skip to content

Commit 3fdfc21

Browse files
committed
Finally the lib is stable
1 parent 8cdd6eb commit 3fdfc21

4 files changed

Lines changed: 88 additions & 3 deletions

File tree

Lines changed: 68 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,68 @@
1+
name: Bug Report
2+
description: Report a bug in typescript-flat-serializer
3+
title: '[BUG]: '
4+
labels: [bug]
5+
assignees:
6+
- ynixt
7+
8+
body:
9+
- type: dropdown
10+
id: version
11+
attributes:
12+
label: Version
13+
description: 'Which version of typescript-flat-serializer you use?'
14+
options:
15+
- 1.0.0
16+
- 0.0.9
17+
multiple: false
18+
validations:
19+
required: true
20+
21+
- type: textarea
22+
id: description
23+
attributes:
24+
label: Description
25+
validations:
26+
required: true
27+
28+
- type: textarea
29+
id: exception-or-error
30+
attributes:
31+
label: Error
32+
description: Please provide the exception or error you saw
33+
render: 'Text'
34+
35+
- type: textarea
36+
id: reproduction
37+
attributes:
38+
label: Reproduction
39+
description: Please provide a minimal code that permits the bug reproduction
40+
validations:
41+
required: true
42+
43+
- type: input
44+
id: os
45+
attributes:
46+
label: On which OS the bug appears?
47+
placeholder: e.g. Windows 10, macOS 11.4, other
48+
validations:
49+
required: true
50+
51+
- type: input
52+
id: project-type
53+
attributes:
54+
label: What is your project type?
55+
placeholder: e.g. NodeJs, Angular, React, other
56+
validations:
57+
required: true
58+
59+
- type: input
60+
id: build-mode
61+
attributes:
62+
label: On which build mode the bug appears?
63+
placeholder: e.g. Development, Production, both
64+
65+
- type: textarea
66+
id: other
67+
attributes:
68+
label: Anything else?
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: Feature Request
2+
description: Suggest a feature for typescript-flat-serializer
3+
title: '[FEAT]: '
4+
labels: [enhancement]
5+
assignees:
6+
- ynixt
7+
8+
body:
9+
- type: textarea
10+
id: description
11+
attributes:
12+
label: Description
13+
validations:
14+
required: true
15+
16+
- type: textarea
17+
id: proposed-solution
18+
attributes:
19+
label: Proposed solution

README.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,6 @@
99

1010
A typescript library to serialize/deserialize classes to/from string in a flat format. Supports inheritance, circular reference and more
1111

12-
# ⚠️ **This library is on pre-release** ⚠️
13-
1412
## Summary
1513

1614
1. [Why](#why)

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "typescript-flat-serializer",
3-
"version": "0.0.9",
3+
"version": "1.0.0",
44
"description": "A typescript library to serialize/deserialize classes to/from string in a flat format. Supports inheritance, circular reference and more",
55
"main": "dist/index.js",
66
"module": "dist/index.mjs",

0 commit comments

Comments
 (0)