Thanks for the work, i really like it.
How specify dependencies
-
in my package.json, I need to specify a dependency in my plugin so I do this plugin:
"dependencies": {
"node-schedule": "1.2.4"
}But When I install my plugin I don't see the node-schedule folder in my node_modules folder. Anyone can help me?
-
How did you "install" the plugin?
npm install
will install dependencies, a simple git clone will not. You will need to runnpm install
inside the plugin folder.