@fnando/npm-scripts

0.0.4 • Public • Published

@fnando/npm-scripts

Installation

yarn add -D @fnando/npm-scripts

Usage

This package contains scripts to be used with husky and lint-staged.

  • eslint: Runs eslint with staged files or defaults to the provided PATTERN.
  • prettier: Runs prettier with staged files or defaults to the provided PATTERN.
  • no-commit-on-master: Fails whenever you try to directly commit to master branch.
  • install-npm-packages-if-needed: Run either yarn install or npm install whenever the pulled changes include changes to yarn.lock or package-lock.json, respectively.
  • webpack-start: Build assets for development with webpack.
  • webpack-build: Build assets for production with webpack.
  • test: Run tests using jest.

Add something like the following to your package.json file.

{
  "scripts": {
    "lint:eslint": "PATTERN='src/**/*.{ts,tsx,json}' npm-scripts run-eslint --fix --max-warnings 0",
    "lint:prettier": "PATTERN='src/**/*.{ts,tsx,json}' npm-scripts run-prettier --write"
  },
  "husky": {
    "hooks": {
      "pre-commit": "npm-scripts no-commit-on-master && lint-staged",
      "pre-push": "npm-scripts no-commit-on-master",
      "post-merge": "npm-scripts install-npm-packages-if-needed"
    }
  },
  "lint-staged": {
    "src/**/*.{ts,tsx}": ["yarn lint:prettier", "yarn lint:eslint", "git add"],
    "src/**/*.json": ["yarn lint:prettier", "git add"]
  }
}

Configuring webpack

Add a webpack key to your package.json. The following snippet contains all available options.

{
  "webpack": {
    "entry": {
      "application": "./app/frontend/application/index.tsx",
      "site": "./app/frontend/site/index.ts"
    },
    "outputDir": "./public/dist",
    "baseDir": "./app/frontend",
    "purgeCSS": {
      "whitelistPatterns": ["^button-\\w+$"]
    }
  }
}

License

Copyright (c) 2019 Nando Vieira

MIT License

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Readme

Keywords

none

Package Sidebar

Install

npm i @fnando/npm-scripts

Weekly Downloads

0

Version

0.0.4

License

MIT

Unpacked Size

16.8 kB

Total Files

23

Last publish

Collaborators

  • fnando