@peterseibel/hug 0.1.8 → 0.1.9

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.
package/CLAUDE.md CHANGED
@@ -4,7 +4,7 @@ This file provides guidance to Claude Code (claude.ai/code) when working with co
4
4
 
5
5
  ## What this is
6
6
 
7
- `hug` is a lightweight bash CLI that wraps [clasp](https://github.com/google/clasp) to provide opinionated project management for Google Apps Script projects. It handles project creation (from templates or by importing existing projects), forking projects for branch-based workflows, and a push→version→deploy workflow.
7
+ `hug` is a bash CLI that wraps [clasp](https://github.com/google/clasp) to provide opinionated project management for Google Apps Script projects. It handles project creation (from templates or by importing existing projects), forking projects for branch-based workflows, and a push→version→deploy workflow.
8
8
 
9
9
  ## Project structure
10
10
 
package/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # hug
2
2
 
3
- A lightweight wrapper around [clasp](https://github.com/google/clasp) for managing Google Apps Script projects.
3
+ A wrapper around [clasp](https://github.com/google/clasp) for managing Google Apps Script projects.
4
4
 
5
5
  ## Install
6
6
 
package/bin/hug CHANGED
@@ -15,7 +15,7 @@ VERSION=$(grep '"version"' "$HUG_ROOT/package.json" | sed 's/.*"version"[[:space
15
15
 
16
16
  usage() {
17
17
  cat <<EOF
18
- hug $VERSION — a lightweight wrapper around clasp
18
+ hug $VERSION — a wrapper around clasp
19
19
 
20
20
  Usage: hug <command> [options]
21
21
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@peterseibel/hug",
3
- "version": "0.1.8",
4
- "description": "A lightweight wrapper around clasp for managing Google Apps Script projects",
3
+ "version": "0.1.9",
4
+ "description": "A wrapper around clasp for managing Google Apps Script projects",
5
5
  "bin": {
6
6
  "hug": "bin/hug"
7
7
  },