From b961a77a268742ac493d71f62cf478ffd693a447 Mon Sep 17 00:00:00 2001 From: Jeremy Gayed Date: Tue, 10 Oct 2017 15:18:57 -0400 Subject: [PATCH] 1.2.0 --- package-lock.json | 2 +- package.json | 28 ++++++++++++++++++++++------ 2 files changed, 23 insertions(+), 7 deletions(-) diff --git a/package-lock.json b/package-lock.json index 03bc180..fb8f806 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "react-head", - "version": "1.1.0", + "version": "1.2.0", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index d9317b9..f9d9028 100644 --- a/package.json +++ b/package.json @@ -1,9 +1,11 @@ { "name": "react-head", - "version": "1.1.0", + "version": "1.2.0", "description": "SSR-ready Document Head management for React 16+", "main": "build/index.js", - "files": [ "build" ], + "files": [ + "build" + ], "scripts": { "prepare": "npm run lint && npm run test && npm run build", "build": "babel --out-dir build src --ignore src/__tests__", @@ -19,7 +21,13 @@ "type": "git", "url": "git+https://github.com/tizmagik/react-head.git" }, - "keywords": [ "react", "head", "portals", "ssr", "isomorphic" ], + "keywords": [ + "react", + "head", + "portals", + "ssr", + "isomorphic" + ], "author": "Jeremy Gayed (https://github.com/tizmagik)", "license": "MIT", "bugs": { @@ -60,10 +68,18 @@ "prop-types": ">=15" }, "jest": { - "roots": [ "./src" ], - "setupFiles": [ "raf/polyfill", "./utils/setup" ] + "roots": [ + "./src" + ], + "setupFiles": [ + "raf/polyfill", + "./utils/setup" + ] }, "lint-staged": { - "*.{js,json}": [ "npm run prettier", "git add" ] + "*.{js,json}": [ + "npm run prettier", + "git add" + ] } }