Skip to content

Commit

Permalink
Add explicit @module annotation
Browse files Browse the repository at this point in the history
This feels like a bug - it should be inferred automatically.
  • Loading branch information
SquidDev committed Dec 25, 2020
1 parent 7f9a707 commit 6add795
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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]) {
Expand Down
Original file line number Diff line number Diff line change
@@ -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
Expand Down

0 comments on commit 6add795

Please sign in to comment.