Как исправить эту ошибку? usemin не найден - PullRequest
0 голосов
/ 01 февраля 2020

Я попытался запустить npm run build после установки rimraf, copyfiles, imagemin, usemin-cli, cssmin, uglify js и htmlmin. А затем редактирование пакета. json файл. Но я получил ошибку

sh: 1: usemin: not found

Вот мой пакет. json file

    {
  "name": "confusion",
  "version": "1.0.0",
  "description": "This is a website for Ristorante Con Fusion",
  "main": "index.html",
  "scripts": {
    "start": "npm run watch:all",
    "test": "echo \"Error: no test specified\" && exit 1",
    "lite": "lite-server",
    "scss": "npx node-sass -o css/ css/",
    "watch:scss": "npx onchange 'css/*.scss' -- npm run scss",
    "watch:all": "concurrently 'npm run watch:scss' 'npm run lite'",
    "clean": "node_modules/rimraf/bin.js dist",
    "copyfonts": "copyfiles -f node_modules/font-awesome/fonts/* dist/fonts",
    "imagemin": "imagemin img/* --out-dir='dist/img'",
    "usemin": "usemin contactus.html -d dist --htmlmin -o dist/contactus.html && usemin aboutus.html -d dist --htmlmin -o dist/aboutus.html && usemin index.html -d dist --htmlmin -o dist/index.html",
    "build": "npm run clean && npm run copyfonts && npm run imagemin && npm run usemin"
  },
  "author": "",
  "license": "ISC",
  "devDependencies": {
    "cssmin": "^0.4.3",
    "htmlmin": "0.0.7",
    "lite-server": "^2.3.0",
    "node-sass": "^4.7.2",
    "onchange": "^3.3.0",
    "parallelshell": "^3.0.1",
    "rimraf": "^2.6.2",
    "uglifyjs": "^2.4.11",
    "usemin-cli": "^0.5.1"
  },
  "dependencies": {
    "bootstrap": "^4.4.1",
    "bootstrap-social": "^5.1.1",
    "font-awesome": "^4.7.0",
    "jquery": "^3.4.1",
    "popper.js": "^1.12.9"
  }
}

Пробовал гугл, но ничего не нашел. Я использую Ubuntu

1 Ответ

0 голосов
/ 04 февраля 2020

Я думаю, npm не может прочитать путь.

Я добавил путь

node_modules / .bin / usemin

Вместо usemin в приведенном выше сценарии.

Работает.

...