Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for printBundle (0.85 sec)

  1. platforms/documentation/docs/src/snippets/buildCache/cacheable-bundle-task/tests/cacheableBundleTask.out

    > Task :bundle FROM-CACHE
    
    > Task :printBundle
    console.log('a');
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 83 bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/buildCache/cacheable-bundle-task/tests/cacheableBundleTask.sample.conf

    commands: [{
        executable: gradle
        args: "bundle clean"
        flags: --build-cache
    },{
        executable: gradle
        args: "bundle printBundle"
        flags: --build-cache
        expected-output-file: cacheableBundleTask.out
        allow-additional-output: true
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 256 bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/buildCache/cacheable-bundle/tests/cacheableBundle.sample.conf

    executable: gradle
    args: printBundle
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 52 bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/buildCache/cacheable-bundle-task/kotlin/build.gradle.kts

            configFiles.from(projectLayout.projectDirectory.file("package-lock.json"))
        }
    }
    
    tasks.register<BundleTask>("bundle")
    // end::bundle-task[]
    
    tasks.register("printBundle") {
        dependsOn("bundle")
    
        val projectLayout: ProjectLayout = layout
    
        doLast {
            println(projectLayout.buildDirectory.file("bundle.js").get().asFile.readText())
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/buildCache/cacheable-bundle/kotlin/build.gradle.kts

            .withPathSensitivity(PathSensitivity.RELATIVE)
    
        outputs.file(layout.buildDirectory.file("bundle.js"))
            .withPropertyName("bundle")
    }
    // end::bundle-task[]
    
    tasks.register("printBundle") {
        dependsOn("bundle")
    
        val projectLayout = layout
    
        doLast {
            println(projectLayout.buildDirectory.file("bundle.js").get().asFile.readText())
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/buildCache/cacheable-bundle/groovy/build.gradle

            .withPathSensitivity(PathSensitivity.RELATIVE)
    
        outputs.file(layout.buildDirectory.file("bundle.js"))
            .withPropertyName("bundle")
    }
    // end::bundle-task[]
    
    tasks.register('printBundle') {
        dependsOn bundle
    
        def projectLayout = layout
    
        doLast {
            println projectLayout.buildDirectory.file("bundle.js").get().asFile.text
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/buildCache/cacheable-bundle-task/groovy/build.gradle

            configFiles.from(projectLayout.projectDirectory.file("package-lock.json"))
        }
    }
    
    tasks.register('bundle', BundleTask)
    // end::bundle-task[]
    
    tasks.register('printBundle') {
        dependsOn bundle
    
        ProjectLayout projectLayout = layout
    
        doLast {
            println projectLayout.buildDirectory.file("bundle.js").get().asFile.text
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.8K bytes
    - Viewed (0)
Back to top