Skip to content

Commit 14cf8a0

Browse files
committed
Fix lodash range default. Closes #5
1 parent 402f2ed commit 14cf8a0

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
const _ = require('lodash')
22

33
module.exports = function ({
4-
grids = _.range(1, 12),
4+
grids = _.range(1, 13),
55
gaps = {},
66
autoMinWidths = {},
77
variants = ['responsive'],

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "tailwindcss-grid",
3-
"version": "1.2.0",
3+
"version": "1.2.1",
44
"description": "CSS grid plugin for tailwindcss framework",
55
"main": "index.js",
66
"scripts": {

0 commit comments

Comments
 (0)