We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
default-lua-version.lua
1 parent 0e78a5c commit 6f24f96Copy full SHA for 6f24f96
1 file changed
README.md
@@ -41,14 +41,16 @@ Addon developers should use an addon file structure like this:
41
42
```sh
43
.
44
-├── [addon name]-[version]-[revision].rockspec # required
+├── .luarocks # required
45
+│ └── default-lua-version.lua # set to 'return "5.5"'
46
├── library/ # optional
-│ ├── more-files.lua
47
+│ ├── definition-files.lua
48
+│ └── ...
49
+├── plugin/ # optional
50
+│ ├── runtime-files.lua
51
│ └── ...
52
├── plugin.lua # optional
-└── plugin/ # optional
- ├── more-files.lua
- └── ...
53
+└── [addon name]-[version]-[revision].rockspec # required
54
```
55
56
See the [Creating an Addon](https://luals.github.io/wiki/addons/#creating-an-addon) section for more information on the individual components.
0 commit comments