mirror of
https://github.com/SquidDev-CC/CC-Tweaked
synced 2024-12-12 11:10:29 +00:00
Add explicit @module annotation
This feels like a bug - it should be inferred automatically.
This commit is contained in:
parent
7f9a707f75
commit
b8d5a89446
@ -336,7 +336,7 @@ task minifyWeb(type: Exec, dependsOn: rollup) {
|
||||
inputs.file("package-lock.json").withPropertyName("package-lock.json")
|
||||
outputs.file("$buildDir/rollup/index.min.js").withPropertyName("output")
|
||||
|
||||
commandLine mkCommand('"node_modules/.bin/terser"' + " -o $buildDir/rollup/index.min.js $buildDir/rollup/index.js")
|
||||
commandLine mkCommand('"node_modules/.bin/terser"' + " -o '$buildDir/rollup/index.min.js' '$buildDir/rollup/index.js'")
|
||||
}
|
||||
|
||||
task illuaminateDocs(type: Exec, dependsOn: [minifyWeb, luaJavadoc]) {
|
||||
|
@ -1,5 +1,6 @@
|
||||
--- Various utilities for working with strings and text.
|
||||
--
|
||||
-- @module cc.strings
|
||||
-- @see textutils For additional string related utilities.
|
||||
|
||||
local expect = require "cc.expect".expect
|
||||
|
Loading…
Reference in New Issue
Block a user