I’m having problems and some doubts in order install ojs from the stable-3_3_0 branch in my local environment.
I’m following the steps in ojs/README.md at stable-3_3_0 · pkp/ojs · GitHub
When npm install
I get some warnings about vulnerabilities.
$ npm install
added 159 packages, removed 234 packages, changed 340 packages, and audited 1511 packages in 17s
102 vulnerabilities (79 moderate, 20 high, 3 critical)
To address issues that do not require attention, run:
npm audit fix
To address all issues (including breaking changes), run:
npm audit fix --force
Run `npm audit` for details.
And my package-lock.json show some differences.
Should I run npm audit fix
or npm audit fix
?
If I don’t fix nothing and I’m agree with the vulnerabilites… I get this error when npm run build
$ npm run build
> OJS3@3.3.0 build
> vue-cli-service build --no-clean
sh: 1: vue-cli-service: not found
What is what I’m missing?
Those are my composer, npm and php versions.
$ composer --version
Composer version 1.10.25 2022-01-21 10:02:15
$ npm --version
8.5.1
$ php -v
PHP 7.4.26 (cli) (built: Nov 19 2021 06:30:49) ( NTS )
Thank you in advance.