From aab323d746e5c4129dd1ec37434938f4211a221e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bart=C5=82omiej=20Pluta?= Date: Tue, 1 Apr 2025 17:23:11 +0200 Subject: [PATCH] Rename app to actual-importer --- flake.nix | 6 +++--- package-lock.json | 6 +++--- package.json | 6 +++--- package.nix | 4 ++-- 4 files changed, 11 insertions(+), 11 deletions(-) diff --git a/flake.nix b/flake.nix index 094d5c4..a386a18 100644 --- a/flake.nix +++ b/flake.nix @@ -1,5 +1,5 @@ { - description = "Flake which provides support for the utility which imports transactions from ING Bank Śląski to Actual budget"; + description = "Flake which provides support for the utility which imports transactions from CSV sources to Actual budget"; inputs = { nixpkgs.url = "github:nixos/nixpkgs?ref=nixos-unstable"; @@ -15,8 +15,8 @@ pkgs = nixpkgs.legacyPackages.${system}; in { packages = rec { - actual-ing = pkgs.callPackage ./package.nix {}; - default = actual-ing; + actual-importer = pkgs.callPackage ./package.nix {}; + default = actual-importer; }; }) // { diff --git a/package-lock.json b/package-lock.json index 4df8125..b3831d1 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,11 +1,11 @@ { - "name": "actual-ing", + "name": "actual-importer", "version": "0.0.1", "lockfileVersion": 3, "requires": true, "packages": { "": { - "name": "actual-ing", + "name": "actual-importer", "version": "0.0.1", "license": "ISC", "dependencies": { @@ -17,7 +17,7 @@ "yaml": "^2.7.1" }, "bin": { - "actual-ing": "dist/index.js" + "actual-importer": "dist/index.js" }, "devDependencies": { "@types/node": "^22.9.0", diff --git a/package.json b/package.json index 91358db..0df55e0 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { - "name": "actual-ing", + "name": "actual-importer", "version": "0.0.1", - "description": "The utility which imports transactions from ING Bank Śląski to Actual budget", + "description": "The utility which imports transactions from CSV sources to Actual budget", "main": "index.ts", "scripts": { "start": "tsx src/index.ts", @@ -10,7 +10,7 @@ "author": "Bartłomiej Pluta ", "license": "ISC", "bin": { - "actual-ing": "./dist/index.js" + "actual-importer": "./dist/index.js" }, "devDependencies": { "@types/node": "^22.9.0", diff --git a/package.nix b/package.nix index 2c251bf..9157f87 100644 --- a/package.nix +++ b/package.nix @@ -4,8 +4,8 @@ ... }: buildNpmPackage { - pname = "actual-ing"; + pname = "actual-importer"; version = "0.0.1"; src = ./.; - npmDepsHash = "sha256-A6Jw+BiL0p8axcQd4rRpUPPxR8dJb2BIV11q/SCEpZE="; + npmDepsHash = "sha256-ovYlyRG4EllqpDKWRrPzxO/A9rTwKs1WtnlAqOgKeaI="; }