From 81493c0c63fc300225ff643cf4cf4d87cc0ec193 Mon Sep 17 00:00:00 2001 From: Joshua Gorner Date: Mon, 13 May 2024 14:22:29 -0400 Subject: [PATCH] Rename package, bump version --- README.md | 3 +-- package.json | 15 +++++++++------ 2 files changed, 10 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index 860c44d..cec3113 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,6 @@ # broccoli-templater -[![Build Status](https://travis-ci.org/stefanpenner/broccoli-templater.svg?branch=master)](https://travis-ci.org/stefanpenner/broccoli-templater) -broccoli plugin that combines lodash.template and broccoli for fun stuff. +broccoli plugin that combines lodash's `_.template` and broccoli for fun stuff. ## example: diff --git a/package.json b/package.json index 77d049d..9c35227 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { - "name": "broccoli-templater", - "version": "2.0.2", + "name": "@gorner/broccoli-templater", + "version": "2.0.3", "description": "easily use lodash templates to template many files", "main": "index.js", "scripts": { @@ -9,18 +9,21 @@ }, "repository": { "type": "git", - "url": "https://github.com/stefanpenner/broccoli-templater" + "url": "https://github.com/gorner/broccoli-templater" }, "keywords": [ "broccoli-plugin", - "lodash.template" + "lodash" ], "author": "Stefan Penner ", + "contributors": [ + "Joshua Gorner" + ], "license": "ISC", "bugs": { - "url": "https://github.com/stefanpenner/broccoli-templater/issues" + "url": "https://github.com/gorner/broccoli-templater/issues" }, - "homepage": "https://github.com/stefanpenner/broccoli-templater", + "homepage": "https://github.com/gorner/broccoli-templater", "dependencies": { "broccoli-plugin": "^1.3.1", "fs-tree-diff": "^0.5.9",