Browse Source

chore: use glob pattern in npmignore

Jonathan Jogenfors 1 year ago
parent
commit
94aa63a14b
2 changed files with 8 additions and 4 deletions
  1. 6 2
      cli/.npmignore
  2. 2 2
      cli/package.json

+ 6 - 2
cli/.npmignore

@@ -1,2 +1,6 @@
-dist/
-node_modules/
+dist/**
+node_modules/**
+test/**
+testStup.js
+**/*.spec.ts
+**/*.e2e-spec.js

+ 2 - 2
cli/package.json

@@ -1,9 +1,9 @@
 {
   "name": "@immich/cli",
-  "version": "2.0.1",
+  "version": "2.0.2",
   "main": "dist/index.js",
   "bin": {
-    "immich": "./dist/index.js"
+    "immich": "dist/index.js"
   },
   "dependencies": {
     "axios": "^1.6.2",