Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@pyrsmk
Last active June 10, 2019 16:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pyrsmk/c2353e9688e8c2e78a21e806ffdca13d to your computer and use it in GitHub Desktop.
Save pyrsmk/c2353e9688e8c2e78a21e806ffdca13d to your computer and use it in GitHub Desktop.
Systèmes de build : scripts NPM
{
"scripts": {
"build": "yarn lint && yarn bundle && yarn minify && yarn minify-dev",
"lint": "eslint 'src/**'",
"bundle": "rollup -c",
"minify": "uglifyjs dist/toast.js -o dist/toast.min.js",
"minify-dev": "uglifyjs dist/toast.js -o tests/lib/toast.min.js --source-map filename=toast.js,url=inline && rm tests/lib/toast.min.js.map",
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment