Skip to content

Commit cd64a95

Browse files
committed
Prepared boilerplate for 1.0.0 update
1 parent 0f6b370 commit cd64a95

16 files changed

+549
-1942
lines changed
+10-10
Original file line numberDiff line numberDiff line change
@@ -1,46 +1,46 @@
11
---
2-
name: ' ⚠️ Bug report'
2+
name: '⚠️ Bug report'
33
about: Create a report to help us improve
4-
title: ' ⚠️ Name of the issue'
4+
title: '⚠️ InsertIssueName'
55
labels: bug
66
assignees: ''
77
---
88

9-
**Describe the bug**
9+
# Describe the bug
1010
A clear and concise description of what the bug is.
1111

12-
**To Reproduce**
12+
## To Reproduce
1313
Steps to reproduce the behavior:
1414

1515
1. Go to '...'
1616
2. Click on '....'
1717
3. Scroll down to '....'
1818
4. See error
1919

20-
**Expected behavior**
20+
## Expected behavior
2121
A clear and concise description of what you expected to happen.
2222

23-
**Screenshots**
23+
## Screenshots
2424
If applicable, add screenshots to help explain your problem.
2525

26-
**Desktop (please complete the following information):**
26+
# Desktop information
2727
Provide you OS version information
2828

29-
**NPM Version**
29+
## NPM Version
3030

3131
<!--Run `npm version` command -->
3232

3333
```
3434
Paste result here
3535
```
3636

37-
**NPM Package versions**
37+
## NPM Package versions
3838

3939
<!--Run `npm list --depth 0` command -->
4040

4141
```
4242
Paste result here
4343
```
4444

45-
**Additional context**
45+
# Additional context
4646
Add any other context about the problem here.

.github/ISSUE_TEMPLATE/---feature-request.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
2-
name: ' ⭐ Feature request'
2+
name: '⭐ Feature request'
33
about: Suggest an idea for this project
4-
title: ' ⭐ Name of the issue'
4+
title: '⭐ Name of the issue'
55
labels: enhancement
66
assignees: ''
77
---

.gitignore

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
.vs
2-
node_modules
2+
node_modules
3+
\[lua\]

.vscode/extensions.json

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
11
{
2-
"recommendations": ["gruntfuggly.triggertaskonsave"]
2+
"recommendations": [
3+
"gruntfuggly.triggertaskonsave",
4+
"redhat.vscode-yaml"
5+
]
36
}

.vscode/settings.json

+6-1
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,10 @@
33
"npm: build": ["src/**/*.ts"]
44
},
55
"typescript.tsdk": "node_modules/typescript/lib",
6-
"typescript.preferences.includePackageJsonAutoImports": "on"
6+
"typescript.preferences.includePackageJsonAutoImports": "on",
7+
"terminal.integrated.defaultProfile.windows": "Command Prompt",
8+
"yaml.schemas": {
9+
"https://raw.githubusercontent.com/mtasa-typescript/mtasa-lua-utils/35c60d06a12b12351df5ce8024880dd77aba63ff/mtasa-meta.schema.json": "mtasa-meta.yml"
10+
},
11+
"redhat.telemetry.enabled": false
712
}

.vscode/tasks.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"problemMatcher": ["$tsc"],
88
"group": "build",
99
"label": "npm: build",
10-
"detail": "tstl"
10+
"detail": "Run MTASA Project build"
1111
}
1212
]
1313
}

lua/.gitignore

-1
This file was deleted.

meta.xml

-15
This file was deleted.

mtasa-meta.yml

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
info:
2+
name: TypeScriptProject
3+
type: script
4+
5+
compilerConfig:
6+
srcDir: TypeScriptProject
7+
8+
scripts:
9+
- src: client.ts
10+
type: client
11+
cache: false
12+
13+
- src: server.ts
14+
type: server
15+
cache: false
16+
17+
- src: utils.ts
18+
type: shared
19+
cache: false
20+
21+
# You can add more resources. Just type --- and continue

0 commit comments

Comments
 (0)