最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Distributing NPM Scripts With A Package For Use By Project Installing It - Stack Overflow

programmeradmin1浏览0评论

I have moved all my linting configuration and related packages/plugins/presets (for prettier, stylelint, eslint, mitlint) out to an npm package. I then use this package in multiple projects and extend or merge over the config into local configuration files for the projects to ensure consistency and remove the need for installing and keeping my development dependencies up to date.

Alongside the config I have a number of useful npm scripts that run the linters and perform a variety of other development related functionality, for example:

"lint:prettier": "prettier 'src/**/*.{js,json}' --write",
"lint:eslint": "eslint 'src/**/*.js'",
"lint:patibilityCheck": "eslint --print-config .eslintrc.js | eslint-config-prettier-check",
"lint": "npm run lint:patibilityCheck && npm run lint:prettier && npm run lint:eslint"

These are currently duplicated across all my projects, but I'd like to distribute these scripts along with my shared package so they are defined in a single location. How should I do this?

I have moved all my linting configuration and related packages/plugins/presets (for prettier, stylelint, eslint, mitlint) out to an npm package. I then use this package in multiple projects and extend or merge over the config into local configuration files for the projects to ensure consistency and remove the need for installing and keeping my development dependencies up to date.

Alongside the config I have a number of useful npm scripts that run the linters and perform a variety of other development related functionality, for example:

"lint:prettier": "prettier 'src/**/*.{js,json}' --write",
"lint:eslint": "eslint 'src/**/*.js'",
"lint:patibilityCheck": "eslint --print-config .eslintrc.js | eslint-config-prettier-check",
"lint": "npm run lint:patibilityCheck && npm run lint:prettier && npm run lint:eslint"

These are currently duplicated across all my projects, but I'd like to distribute these scripts along with my shared package so they are defined in a single location. How should I do this?

Share Improve this question edited Sep 10, 2018 at 13:44 Undistraction asked Sep 10, 2018 at 12:52 UndistractionUndistraction 43.4k63 gold badges206 silver badges336 bronze badges
Add a ment  | 

4 Answers 4

Reset to default 5 +50

From npm blog, it seems that there are no "direct ways" to expose dev scripts in an npm package. The blog post suggests creating JavaScripts files that run your preferred scripts using shelljs module.

Example: assuming you want to expose lint:prettier": "prettier 'src/**/*.{js,json}' --write"

wrap the call inside bin/lintprettier.js:

#! /usr/bin/env node
var shell = require("shelljs");
const path = require("path")

process.env.PATH += (path.delimiter + path.join(process.cwd(), 'node_modules', '.bin'));
shell.exec("prettier 'src/**/*.{js,json}' --write");

Then add it to the exported console scripts in your package.json:

...
"bin": {
   "lint-prettier": "bin/lintprettier.js"
}
...

Finally, you can reuse your script in your project:

"scripts": {
   "build": "...",
   "lint:prettier": "lint-prettier"
 }

One way you can do it is with Builder.

Builder allows you to ship npm scripts as NPM packages, and run them in any project in which you've installed that package containing the scripts.

In my use cases, I put all my build/test/lint scripts in an NPM package, then I install this one package in all of my other projects. Then in each project I can run the exact same mands.

Builder is not highly-maintained lately, but it is fairly stable, and I've used it with much success. The README is very thorough, and describes just about everything you need to know.

Cristiano's answer is nice too though, as going with that approach may let you be more in control of the solution implementation, whereas with Builder it is another project with its own implementation (and few issues).

I'm not sure it's correct to try and allow a dependency change the dependent configuration, even if I knew an easy way to do it.

Instead of trying getting from bottom to top, do the other way around. I extremely remend to use lerna.

It's a great tool for managing packages in a monorepo, and you can even hoist shared dependencies across your packages, And to your issue, it allows define on top of all your packages, one main package.json where you can define the npm scripts just once, and run it for all packages (or just few of them using the scope feature) with a single mand.

I made a tool to solve this kind of problems. I call it Dictator Builder. It helps create dictators that are their own NPM packages.

A dictator can be configured to dictate what scripts should be in package.json and also supply whatever other configuration files are needed:

{
  "message": "Setup package.json and linting",
  "actions": [
    {
      "message": "Should have lint script in package.json",
      "haveJsonPathValues": [
        {
          "expression": "$.scripts.lint",
          "value": "npm run eslint"
        }
      ],
      "target": "package.json"
    },
    {
      "copyFrom": "static-files",
      "target": "."
    }
  ]
}
发布评论

评论列表(0)

  1. 暂无评论