Giter VIP home page Giter VIP logo

Comments (6)

mysticatea avatar mysticatea commented on May 14, 2024 2

Thank you for this issue.

Hmm, sorry, I don't want to add the feature to wait for specified message.
I think it's too complex for CLI option.

There are some workarounds.

  1. Does the first build before watching.

    {
        "build": "tsc ...",
        "watch": "npm-run-all build -p watch:*",
        "watch:tsc": "tsc -w ...",
        "watch:nodemon": "nodemon ..."
    }
  2. Wait for built files in nodemon command.
    https://stackoverflow.com/questions/37466757/how-do-i-run-postmans-newman-in-ci-environment
    wait-on command can wait for local files.

from npm-run-all.

poislagarde avatar poislagarde commented on May 14, 2024 2

@robario if it helps, I ended up doing this:

"scripts": {
    "prebuild": "rimraf _built",
    "build": "tsc",
    "watch": "npm-run-all prebuild -p watch:*",
    "watch:tsc": "tsc -w",
    "watch:nodemon": "wait-on _built/server.js && nodemon _built/server.js --watch _built"
}

wait-on works fine here because the _built directory is cleared (rimraf _built) before.

from npm-run-all.

poislagarde avatar poislagarde commented on May 14, 2024

I understand, it could get a little messy. Thank you for the quick answer and help though, and wait-on works great in my case. Thanks again!

from npm-run-all.

robario avatar robario commented on May 14, 2024

@mysticatea
I know how @poislagarde feel.

{
    "build": "webpack",
    "watch": "npm-run-all build -p watch:*",
    "watch:webpack": "webpack --watch",
    "watch:depends_on_webpack": "some_processing ./www/bundle.js",
}

In the case of above, webpack's first build runs twice. (And the first build is slower than the continuous build.)
The idea of using wait-on sounds good.

    "watch:depends_on_webpack": "wait-on ./www/bundle.js && some_processing ./www/bundle.js",

However it is not waiting if ./www/bundle.js already exists.
I want to wait for the completion of the process rather than the file creation.

Should I do like this?

    "watch:depends_on_webpack": "rimraf ./www/bundle.js && wait-on ./www/bundle.js && some_processing ./www/bundle.js",

Otherwise wait for the stdout as described in this issue?
However, I think it is difficult that implement to wait for stdout.

from npm-run-all.

robario avatar robario commented on May 14, 2024

@poislagarde
Thank you for telling me the actual situation.
I started using rimraf and wait-on, too.

from npm-run-all.

mysticatea avatar mysticatea commented on May 14, 2024

Closing as I don't want to add this feature.
Thank you for making request.

from npm-run-all.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.