Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
41 changes: 0 additions & 41 deletions .circleci/config.yml

This file was deleted.

20 changes: 20 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -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
2 changes: 1 addition & 1 deletion .npmignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
test/
.circleci/
.github/
1 change: 1 addition & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -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
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -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.

Expand All @@ -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
Expand Down
11 changes: 7 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand All @@ -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"
},
Expand Down