emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[nongnu] elpa/projectile 0c0d45925f 4/6: Add a new project type "pnpm"


From: ELPA Syncer
Subject: [nongnu] elpa/projectile 0c0d45925f 4/6: Add a new project type "pnpm"
Date: Tue, 19 Sep 2023 00:59:59 -0400 (EDT)

branch: elpa/projectile
commit 0c0d45925fccc37675e7d5986d0fca56f5f608c7
Author: Akinori MUSHA <knu@idaemons.org>
Commit: Bozhidar Batsov <bozhidar@batsov.dev>

    Add a new project type "pnpm"
---
 projectile.el | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/projectile.el b/projectile.el
index e22718d439..d2cfb5c8b9 100644
--- a/projectile.el
+++ b/projectile.el
@@ -3329,6 +3329,11 @@ a manual COMMAND-TYPE command is created with
                                   :compile "yarn && yarn build"
                                   :test "yarn test"
                                   :test-suffix ".test")
+(projectile-register-project-type 'pnpm '("package.json" "pnpm-lock.yaml")
+                                  :project-file "package.json"
+                                  :compile "pnpm install && pnpm build"
+                                  :test "pnpm test"
+                                  :test-suffix ".test")
 ;; Angular
 (projectile-register-project-type 'angular '("angular.json" 
".angular-cli.json")
                                   :project-file "angular.json"



reply via email to

[Prev in Thread] Current Thread [Next in Thread]