gradle-node-plugin
gradle-node-plugin copied to clipboard
How to use grunt in gradle
I want to build the project's script using grunt. Is that possible in gradle? I'm looking for a related guide, but I can't make progress because I don't understand it well. I wish there was a separate guide or brief sample code.
Have you seen the FAQ entry for grunt?
grunt에 대한 FAQ 항목을 보셨나요 ?
Since I still lack relevant knowledge, I couldn't understand specifically how to do it by just looking at the FAQ, so I inquired. So I asked for an sample.
That's fair, the gist of it is that you create a NpxTask with npxCommand set to grunt and then you add the arguments you want as args = ["your", "arguments", "to", "grunt"]
(And then you need to declare the inputs and the outputs to make sure gradle knows when to run the task)
This plugin just provides tasks that are suitable for running grunt, any grunt configuration needs to be done through their usual gruntfile
I don't know what the error message means when I follow the guide.
Could not set unknown property 'npxCommand' for task
args only needs build.
Is it necessary to install grunt using a method other than 'npm install --save-dev grunt-cli'?
Oh, that's a mistake in the documentation. It should be command and not npxCommand
As long as grunt is a dependency in your package.json and you add a dependency to npmInstall it should work fine
If not then npm install --save-dev grunt-cli will install it and add it to package.json
I didn't understand exactly what you said, but the same error occurs even after executing the command.
npm install --save-dev grunt-clipackage.json
Oh, I don't speak English, so I misunderstood because I read it through a translator. I'll use 'command'