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 diff --git a/.npmignore b/.npmignore index 2590836..3017f34 100644 --- a/.npmignore +++ b/.npmignore @@ -1,2 +1,2 @@ test/ -.circleci/ +.github/ 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 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" },