[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.

Remove unnecessary dependency

Nestor Vera (Jul 18, 2019, 4:47 PM +0200) f6fe46ef 30d49e4b

+4 -22
-3
babel.config.js
··· 2 2 presets: [ 3 3 ['@babel/preset-env', { targets: { node: '8' } }], 4 4 ], 5 - plugins: [ 6 - 'babel-plugin-root-import', 7 - ], 8 5 }
-1
package.json
··· 41 41 "@babel/core": "7.5.5", 42 42 "@babel/preset-env": "7.5.5", 43 43 "babel-jest": "^24.8.0", 44 - "babel-plugin-root-import": "^6.3.0", 45 44 "eslint": "^6.0.1", 46 45 "eslint-config-standard": "^13.0.1", 47 46 "eslint-import-resolver-node": "^0.3.2",
-14
pnpm-lock.yaml
··· 8 8 '@babel/core': 7.5.5 9 9 '@babel/preset-env': 7.5.5_@babel+core@7.5.5 10 10 babel-jest: 24.8.0_@babel+core@7.5.5 11 - babel-plugin-root-import: 6.3.0 12 11 eslint: 6.0.1 13 12 eslint-config-standard: 13.0.1_8fabaeee733be227f04389fe0abf54ca 14 13 eslint-import-resolver-node: 0.3.2 ··· 1430 1429 node: '>= 6' 1431 1430 resolution: 1432 1431 integrity: sha512-3pKNH6hMt9SbOv0F3WVmy5CWQ4uogS3k0GY5XLyQHJ9EGpAT9XWkFd2ZiXXtkwFHdAHa5j7w7kfxSP5lAIwu7w== 1433 - /babel-plugin-root-import/6.3.0: 1434 - dependencies: 1435 - slash: 1.0.0 1436 - dev: true 1437 - resolution: 1438 - integrity: sha512-F8xCST6o6zvfvDQRHqwAHL9ia4b8wmdDMgbGiQ+tncEcP3aSi7tTJIqeI/0hqt++aoZtCpQzsLN8QVU/CBRD/A== 1439 1432 /babel-preset-jest/24.6.0_@babel+core@7.5.4: 1440 1433 dependencies: 1441 1434 '@babel/plugin-syntax-object-rest-spread': 7.2.0_@babel+core@7.5.4 ··· 5528 5521 dev: true 5529 5522 resolution: 5530 5523 integrity: sha512-ZcYcZcT69nSLAR2oLN2JwNmLkJEKGooFMCdvOkFrToUt/WfcRWqhIg4P4KwY4dmLbuyXIx4o4YmPsvMRJYJd/w== 5531 - /slash/1.0.0: 5532 - dev: true 5533 - engines: 5534 - node: '>=0.10.0' 5535 - resolution: 5536 - integrity: sha1-xB8vbDn8FtHNF61LXYlhFK5HDVU= 5537 5524 /slash/2.0.0: 5538 5525 dev: true 5539 5526 engines: ··· 6356 6343 '@babel/core': 7.5.5 6357 6344 '@babel/preset-env': 7.5.5 6358 6345 babel-jest: ^24.8.0 6359 - babel-plugin-root-import: ^6.3.0 6360 6346 eslint: ^6.0.1 6361 6347 eslint-config-standard: ^13.0.1 6362 6348 eslint-import-resolver-node: ^0.3.2
+1 -1
tailwind.config.js
··· 1 - const plugin = require('~/src/plugin.js') 1 + const plugin = require('./src/plugin.js') 2 2 const pluginOptions = {} 3 3 4 4 module.exports = {
+1 -1
src/index.test.js
··· 6 6 } from './index' 7 7 8 8 import resolveConfig from 'tailwindcss/resolveConfig' 9 - import tailwindConfig from '~/tailwind.config.js' 9 + import tailwindConfig from '../tailwind.config.js' 10 10 11 11 import escapeClassName from 'tailwindcss/lib/util/escapeClassName' 12 12 import prefixSelector from 'tailwindcss/lib/util/prefixSelector'
+2 -2
src/plugin.js
··· 1 - import tailwindConfig from '~/tailwind.config.js' 2 - import { buildPlugin } from '~/src/index.js' 1 + import tailwindConfig from '../tailwind.config.js' 2 + import { buildPlugin } from './index.js' 3 3 4 4 module.exports = function (pluginOptions) { 5 5 return function (coreUtils) {