Я начал работу с узлом и попытался настроить среду разработки.Я установил eyeglass , а также normalize-scss, bourbon и neat.Я следовал инструкциям на странице eyeglass, чтобы установить другие модули (npm install [module-name] --save-dev
), но когда я пытаюсь скомпилировать sass-код, я сталкиваюсь с ошибкой File to import not found or unreadable: normalize.
.Эта ошибка также появляется для бурбона и аккуратного, когда я импортирую их сначала.Я использую sass-autocompile в atom, но компиляция обычно с использованием node-sass дает тот же результат.Мой package.json выглядит следующим образом:
{
"name": "ising-model",
"version": "1.0.0",
"description": "ising model on the web",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/heyrichardshi/ising-model.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/heyrichardshi/ising-model/issues"
},
"homepage": "https://github.com/heyrichardshi/ising-model#readme",
"devDependencies": {
"bourbon": "^5.1.0",
"bourbon-neat": "^3.0.1",
"eyeglass": "^2.4.1",
"normalize-scss": "^7.0.1"
},
"dependencies": {}
}