A "universal" / normalized API wrapper for git hosting services.
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- buildscript {
- repositories {
- mavenCentral()
- maven {
- url "https://plugins.gradle.org/m2/"
- }
- }
- dependencies {
- classpath 'com.moowork.gradle:gradle-node-plugin:1.3.1'
- }
- }
- apply plugin: 'base'
- apply plugin: 'com.moowork.node'
-
- node {
- version = '12.13.0'
- npmVersion = '6.14.4'
- yarnVersion = '1.21.1'
- download = false
- }
-
- yarn_install {
- dependsOn ':gitrest:assemble'
- }
-
- task run(type: YarnTask) {
- dependsOn ':example-nodejs:yarn_install'
- args = ['node', 'src/index.js']
- }
|