Skip to content

Commit ae5c95d

Browse files
JSMonkAlejandraPedroza
authored andcommitted
Replace moduleName with outputModuleName since moduleName is deprecated
1 parent f10049a commit ae5c95d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/topics/js/js-project-setup.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -917,11 +917,11 @@ kotlin {
917917
## Module name
918918

919919
To adjust the name for the JavaScript _module_ (which is generated in `build/js/packages/myModuleName`), including
920-
the corresponding `.js` and `.d.ts` files, use the `moduleName` option:
920+
the corresponding `.js` and `.d.ts` files, use the `outputModuleName` option:
921921

922922
```groovy
923923
js {
924-
moduleName = "myModuleName"
924+
outputModuleName = "myModuleName"
925925
}
926926
```
927927

0 commit comments

Comments
 (0)