diff --git a/README.md b/README.md index 7844407..0ebbaba 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,6 @@ -# TODO LIST +# Typescript Gradle Plugin + + +Gradle plugin to build typescript and produce `.js` file. + +It makes the assumption that the typescript files are in `src/main/typescript`. + +## Usage + +Just apply it to your project: + +```kotlin +plugins { + id("io.github.zucchero-sintattico.typescript-gradle-plugin") version "" +} +``` + +At the moment there are the following tasks: + +- `CheckNode`: checks if node is installed +- `compileTypescript`: compiles the typescript file diff --git a/build.gradle.kts b/build.gradle.kts index d0f00bc..32bc0bf 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -143,7 +143,7 @@ publishOnCentral { gradlePlugin { plugins { website.set(info.website) - vcsUrl.set(info.vcsUrl) + vcsUrl.set(info.website) // vcsUrl.set(info.vcsUrl) create("") { id = "$group.${project.name}" displayName = info.longName