From 44c085c6f9efad815aa9a7c845caa3c78b300a34 Mon Sep 17 00:00:00 2001 From: romellem Date: Mon, 10 Aug 2026 15:17:10 -0400 Subject: [PATCH 1/5] huh From 9ef505e7c739a0ea769186a1a8e4e032153b12cb Mon Sep 17 00:00:00 2001 From: romellem Date: Tue, 11 Aug 2026 11:38:32 -0400 Subject: [PATCH 2/5] designory org to romellem --- README.md | 6 +++--- package.json | 11 +++++++---- 2 files changed, 10 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 25f1308..71eed52 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # Build Diff -[![npm version](https://badge.fury.io/js/%40designory%2Fbuild-diff.svg)](https://badge.fury.io/js/%40designory%2Fbuild-diff) +[![npm version](https://badge.fury.io/js/%40romellem%2Fbuild-diff.svg)](https://www.npmjs.com/package/@romellem/build-diff) A small CLI utility to compare two "build" folders, and copy out the differences between them. @@ -14,9 +14,9 @@ Both of these come standard with macOS and probably most linux/unix flavors. ## Install ``` -$ npm install -g @designory/build-diff +$ npm install -g @romellem/build-diff # or -$ yarn global add @designory/build-diff +$ yarn global add @romellem/build-diff ``` ## Usage diff --git a/package.json b/package.json index bebfdd0..0d6229d 100644 --- a/package.json +++ b/package.json @@ -1,5 +1,5 @@ { - "name": "@designory/build-diff", + "name": "@romellem/build-diff", "version": "0.3.2", "description": "A small CLI utility to compare two \"build\" folders, and copy out the differences between them.", "main": "index.js", @@ -12,15 +12,18 @@ }, "repository": { "type": "git", - "url": "git+https://github.com/Designory/build-diff.git" + "url": "git+https://github.com/romellem/build-diff.git" }, "keywords": [], "author": "Matt Wade", "license": "MIT", "bugs": { - "url": "https://github.com/Designory/build-diff/issues" + "url": "https://github.com/romellem/build-diff/issues" + }, + "homepage": "https://github.com/romellem/build-diff#readme", + "publishConfig": { + "access": "public" }, - "homepage": "https://github.com/Designory/build-diff#readme", "engines": { "node": ">=8.9.0" }, From f5ccc33cce79f1f098e913cce885086650af1124 Mon Sep 17 00:00:00 2001 From: romellem Date: Tue, 11 Aug 2026 11:43:00 -0400 Subject: [PATCH 3/5] circleci to gha --- .circleci/config.yml | 41 -------------------------------------- .github/workflows/test.yml | 20 +++++++++++++++++++ 2 files changed, 20 insertions(+), 41 deletions(-) delete mode 100644 .circleci/config.yml create mode 100644 .github/workflows/test.yml diff --git a/.circleci/config.yml b/.circleci/config.yml deleted file mode 100644 index e128b9b..0000000 --- a/.circleci/config.yml +++ /dev/null @@ -1,41 +0,0 @@ -# Javascript Node CircleCI 2.0 configuration file -# -# Check https://circleci.com/docs/2.0/language-javascript/ for more details -# -version: 2 -jobs: - build: - docker: - # specify the version you desire here - - image: circleci/node:10.16.3 - - # Specify service dependencies here if necessary - # CircleCI maintains a library of pre-built images - # documented at https://circleci.com/docs/2.0/circleci-images/ - # - image: circleci/mongo:3.4.4 - - working_directory: ~/repo - - steps: - - checkout - - # Download and cache dependencies - - restore_cache: - keys: - - v1-dependencies-{{ checksum "package.json" }} - # fallback to using the latest cache if no exact match is found - - v1-dependencies- - - - run: yarn install - - - save_cache: - paths: - - node_modules - key: v1-dependencies-{{ checksum "package.json" }} - - - run: - name: Output diff binary version - command: diff -v - - # run tests! - - run: yarn test diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml new file mode 100644 index 0000000..c01f158 --- /dev/null +++ b/.github/workflows/test.yml @@ -0,0 +1,20 @@ +name: Test + +on: + push: + pull_request: + +permissions: + contents: read + +jobs: + test: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v7 + - uses: actions/setup-node@v7 + with: + node-version: 24 + cache: yarn + - run: yarn install --frozen-lockfile + - run: yarn test From 25569e4d8ca70371bcb7c0be53e5e31faba07d44 Mon Sep 17 00:00:00 2001 From: romellem Date: Tue, 11 Aug 2026 11:43:16 -0400 Subject: [PATCH 4/5] dont publish gha --- .npmignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.npmignore b/.npmignore index 2590836..3017f34 100644 --- a/.npmignore +++ b/.npmignore @@ -1,2 +1,2 @@ test/ -.circleci/ +.github/ From 312ee28cc54b1a303c01b61523c9f4b918c8aa13 Mon Sep 17 00:00:00 2001 From: romellem Date: Tue, 11 Aug 2026 11:48:48 -0400 Subject: [PATCH 5/5] new work copryright me --- LICENSE | 1 + 1 file changed, 1 insertion(+) diff --git a/LICENSE b/LICENSE index a7a359e..fc77581 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,7 @@ MIT License Copyright (c) 2019 Designory +Copyright (c) 2026 Matthew Wade Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal