Skip to content

Commit 6add795

Browse files
committed
Add explicit @module annotation
This feels like a bug - it should be inferred automatically.
1 parent 7f9a707 commit 6add795

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -336,7 +336,7 @@ task minifyWeb(type: Exec, dependsOn: rollup) {
336336
inputs.file("package-lock.json").withPropertyName("package-lock.json")
337337
outputs.file("$buildDir/rollup/index.min.js").withPropertyName("output")
338338

339-
commandLine mkCommand('"node_modules/.bin/terser"' + " -o $buildDir/rollup/index.min.js $buildDir/rollup/index.js")
339+
commandLine mkCommand('"node_modules/.bin/terser"' + " -o '$buildDir/rollup/index.min.js' '$buildDir/rollup/index.js'")
340340
}
341341

342342
task illuaminateDocs(type: Exec, dependsOn: [minifyWeb, luaJavadoc]) {

src/main/resources/data/computercraft/lua/rom/modules/main/cc/strings.lua

+1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
--- Various utilities for working with strings and text.
22
--
3+
-- @module cc.strings
34
-- @see textutils For additional string related utilities.
45

56
local expect = require "cc.expect".expect

0 commit comments

Comments
 (0)