Rename app to actual-importer
This commit is contained in:
@@ -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;
|
||||
};
|
||||
})
|
||||
// {
|
||||
|
||||
6
package-lock.json
generated
6
package-lock.json
generated
@@ -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",
|
||||
|
||||
@@ -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 <noreply.git@mx.bartlomiejpluta.com>",
|
||||
"license": "ISC",
|
||||
"bin": {
|
||||
"actual-ing": "./dist/index.js"
|
||||
"actual-importer": "./dist/index.js"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@types/node": "^22.9.0",
|
||||
|
||||
@@ -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=";
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user