@quenty/nevermore-cli 4.11.1-canary.5152d52.0 → 4.12.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +2 -2
- package/package.json +4 -4
- package/templates/game-template/README.md +28 -0
package/CHANGELOG.md
CHANGED
|
@@ -3,12 +3,12 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
-
|
|
6
|
+
# [4.12.0](https://github.com/Quenty/Nevermore/compare/@quenty/nevermore-cli@4.11.0...@quenty/nevermore-cli@4.12.0) (2026-01-08)
|
|
7
7
|
|
|
8
8
|
|
|
9
9
|
### Features
|
|
10
10
|
|
|
11
|
-
* Nevermore init generates complaint luau-lsp checking that can be pushed to github immediately and pass CI/CD ([
|
|
11
|
+
* Nevermore init generates complaint luau-lsp checking that can be pushed to github immediately and pass CI/CD ([7aaabed](https://github.com/Quenty/Nevermore/commit/7aaabed2d35be08ca2f4956cfb6e87371e939c2f))
|
|
12
12
|
|
|
13
13
|
|
|
14
14
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@quenty/nevermore-cli",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.12.0",
|
|
4
4
|
"description": "CLI interface for Nevermore",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"Roblox",
|
|
@@ -24,8 +24,8 @@
|
|
|
24
24
|
"Quenty"
|
|
25
25
|
],
|
|
26
26
|
"dependencies": {
|
|
27
|
-
"@quenty/cli-output-helpers": "1.2.3",
|
|
28
|
-
"@quenty/nevermore-template-helpers": "1.
|
|
27
|
+
"@quenty/cli-output-helpers": "^1.2.3",
|
|
28
|
+
"@quenty/nevermore-template-helpers": "^1.4.0",
|
|
29
29
|
"execa": "v5.1.1",
|
|
30
30
|
"find-git-root": "^1.0.4",
|
|
31
31
|
"inquirer": "^8.2.4",
|
|
@@ -52,5 +52,5 @@
|
|
|
52
52
|
"engines": {
|
|
53
53
|
"node": ">=16"
|
|
54
54
|
},
|
|
55
|
-
"gitHead": "
|
|
55
|
+
"gitHead": "ebbbc959d7368138e5c404816ffda27fa7ca5263"
|
|
56
56
|
}
|
|
@@ -26,6 +26,34 @@ To build the game, you want to do the following
|
|
|
26
26
|
|
|
27
27
|
To add new packages you can run `npm install @quenty/package-name` or whatever the package you want.
|
|
28
28
|
|
|
29
|
+
# Running tools locally
|
|
30
|
+
|
|
31
|
+
To check linting, run the following commands in your terminal.
|
|
32
|
+
|
|
33
|
+
```bash
|
|
34
|
+
npm run lint:luau
|
|
35
|
+
```
|
|
36
|
+
|
|
37
|
+
```bash
|
|
38
|
+
npm run lint:selene
|
|
39
|
+
```
|
|
40
|
+
|
|
41
|
+
```bash
|
|
42
|
+
npm run lint:stylua
|
|
43
|
+
```
|
|
44
|
+
|
|
45
|
+
```bash
|
|
46
|
+
npm run lint:moonwave
|
|
47
|
+
```
|
|
48
|
+
|
|
49
|
+
To automatically fix formatting, run
|
|
50
|
+
|
|
51
|
+
```bash
|
|
52
|
+
npm run format
|
|
53
|
+
```
|
|
54
|
+
|
|
55
|
+
Note that you should also configure your editor to automatically format files using Stylua.
|
|
56
|
+
|
|
29
57
|
# Getting Luau-lsp to work in VSCode
|
|
30
58
|
|
|
31
59
|
Configure your vscode settings to use the custom work!
|