Bugzilla – Attachment 143942 Details for
Bug 32223
package.json script paths too specific
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 32223: Remove node_modules/.bin from package.json
Bug-32223-Remove-nodemodulesbin-from-packagejson.patch (text/plain), 970 bytes, created by
Jonathan Druart
on 2022-11-16 08:10:11 UTC
(
hide
)
Description:
Bug 32223: Remove node_modules/.bin from package.json
Filename:
MIME Type:
Creator:
Jonathan Druart
Created:
2022-11-16 08:10:11 UTC
Size:
970 bytes
patch
obsolete
>From 7d8e27d8a18c1d81c9b9293723be6d760c72dcac Mon Sep 17 00:00:00 2001 >From: Jonathan Druart <jonathan.druart@bugs.koha-community.org> >Date: Wed, 16 Nov 2022 09:09:21 +0100 >Subject: [PATCH] Bug 32223: Remove node_modules/.bin from package.json > >We should not specify the node_modules/.bin part if the env is correctly configured. >--- > package.json | 6 +++--- > 1 file changed, 3 insertions(+), 3 deletions(-) > >diff --git a/package.json b/package.json >index 93faa22143d..d7c12095615 100644 >--- a/package.json >+++ b/package.json >@@ -41,11 +41,11 @@ > "vue-select": "4.0.0-beta.3" > }, > "scripts": { >- "build": "node_modules/.bin/gulp build", >+ "build": "gulp build", > "build_js": "webpack --mode production", > "watch_js": "webpack --mode development --watch", >- "css": "node_modules/.bin/gulp css", >- "watch": "node_modules/.bin/gulp watch" >+ "css": "gulp css", >+ "watch": "gulp watch" > }, > "repository": { > "type": "git", >-- >2.25.1
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
|
Splinter Review
Attachments on
bug 32223
:
143942
|
143949