tailwindcss 2.2.15 → 2.2.16

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -52,7 +52,13 @@ function parseAnimationValue(input) {
52
52
  } else if (!seen.has('DELAY') && TIME.test(part)) {
53
53
  result.delay = part;
54
54
  seen.add('DELAY');
55
- } else result.name = part;
55
+ } else if (!seen.has('NAME')) {
56
+ result.name = part;
57
+ seen.add('NAME');
58
+ } else {
59
+ if (!result.unknown) result.unknown = [];
60
+ result.unknown.push(part);
61
+ }
56
62
  }
57
63
 
58
64
  return result;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tailwindcss",
3
- "version": "2.2.15",
3
+ "version": "2.2.16",
4
4
  "description": "A utility-first CSS framework for rapidly building custom user interfaces.",
5
5
  "license": "MIT",
6
6
  "main": "lib/index.js",