[READ-ONLY] Mirror of https://github.com/hacknug/tailwindcss-plugin-utils. A bunch of utilities to help you create and maintain plugins for Tailwind. www.npmjs.com/package/@hacknug/tailwindcss-plugin-utils
0

Configure Feed

Select the types of activity you want to include in your feed.

Add engines info to package.json

Nestor Vera (Jul 30, 2019, 1:13 PM +0200) 2da4b301 f2f2f455

+4 -1
+4 -1
package.json
··· 25 25 "scripts": { 26 26 "prebuild": "rimraf lib", 27 27 "build": "babel src --out-dir lib --ignore 'src/**/*.test.js'", 28 + "dev": "jest --watchAll", 28 29 "prepublish": "npm run build", 29 30 "release": "release-it", 30 - "dev": "jest --watchAll", 31 31 "test": "jest" 32 32 }, 33 33 "dependencies": { ··· 52 52 "jest-matcher-css": "^1.1.0", 53 53 "release-it": "^12.3.3", 54 54 "rimraf": "^2.6.3" 55 + }, 56 + "engines": { 57 + "node": ">=8.9.0" 55 58 } 56 59 }