14

我目前正在运行 NPM 的 node-sass 工具,但它运行的 libsass 版本是 3.2.2,而我需要运行的版本是 3.2.4,因为这修复了我所在的一个框架中的一个关键错误使用。

在此处输入图像描述

我找不到有关如何构建和/或更新 node-sass 或 libsass 以满足我的要求的信息。我已经在运行最新版本的 node-sass 3.1.2。

然而,我的 node-sasspackage.json似乎有一个 key:value 对,表明 libsass 是 3.2.4,但这显然是不正确的。

升级我的 libsass 版本最简单的方法是什么?

更新

6 月 6 日

我做了一些额外的搜索,但仍然无法让 libsass 处于 3.2.4 版本。我尝试升级旧的 node-sass 包,并检查我的环境变量是否有覆盖。还没有解决办法。

6月7日

看来 node-sass 提供的 Libsass 版本是 3.2.4,但它没有被选中,并且默认为 Libass binarypath

path.join(__dirname, '..', 'vendor', sass.binaryName.replace(/_/, '/'));

在我的机器上产生:

H:\myproj\node_modules\gulp-sass\node_modules\node-sass\vendor\win32-x64-14\binding.node

我不知道这是什么意思。看看node-sass\lib\extensions.js第 134 行:

sass.getBinaryPath = function(throwIfNotExists) {
  var binaryPath;

  if (flags['--sass-binary-path']) {
    binaryPath = flags['--sass-binary-path'];
  } else if (process.env.SASS_BINARY_PATH) {
    binaryPath = process.env.SASS_BINARY_PATH;
  } else if (pkg.nodeSassConfig && pkg.nodeSassConfig.binaryPath) {
    binaryPath = pkg.nodeSassConfig.binaryPath;


  // This is the only statement that executes successfully, my libsass binary path is coming from this location. Why?
  } else {
    binaryPath = path.join(__dirname, '..', 'vendor', sass.binaryName.replace(/_/, '/'));
  }

  if (!fs.existsSync(binaryPath) && throwIfNotExists) {
    throw new Error(['`libsass` bindings not found in ', binaryPath, '. Try reinstalling `node-sass`?'].join(''));
  }

  return binaryPath;
};

sass.binaryPath = sass.getBinaryPath();
 
4

3 回答 3

1

没有特殊的命令。看看lib/extensions.js 文件。它有几条有趣的线:

/**
 * The default URL can be overriden using
 * the environment variable SASS_BINARY_SITE
 * or a command line option --sass-binary-site:
 *
 *   node scripts/install.js --sass-binary-site http://example.com/
 *
 * The URL should to the mirror of the repository
 * laid out as follows:
 * SASS_BINARY_SITE/
 *  v3.0.0
 *  v3.0.0/freebsd-x64-14_binding.node
 *  ... etc. for all supported versions and platforms
 */

Libsass在这种情况下只是一个源文件夹。您可以尝试进行干净的构建。删除node-sass并重新安装。

npm install node-sass@3.0.0
...
node ./node_modules/.bin/node-sass --version
node-sass   3.0.0   (Wrapper)   [JavaScript]
libsass     3.2.2   (Sass Compiler) [C/C++]  

更新时:

npm update node-sass
node ./node_modules/.bin/node-sass --version
node-sass   3.1.2   (Wrapper)   [JavaScript]
libsass     3.2.4   (Sass Compiler) [C/C++] 

PS要小心@at-root3.2.4它被窃听了

更新
如果它不能解决您的问题,请尝试删除所有npm缓存

npm cache clean

第二次更新
尝试手动安装绑定:

cd node-sass
rm -r vendor
node scripts/install.js --sass-binary-site https://github.com/sass/node-sass/releases/download/

它将输出如下内容:

Binary downloaded and installed at /Users/sobolev/Documents/github/modernizr-mixin/node_modules/node-sass/vendor/darwin-x64-14/binding.node
于 2015-06-06T18:41:50.327 回答
1

您可以尝试以下步骤:

  1. git 克隆https://github.com/sass/node-sass.git
  2. cd node-sass
  3. git 结帐标签/v3.1.2
  4. npm 安装。-G
  5. 节点-sass -v

这应该可以解决您的问题。

于 2015-06-12T17:59:42.760 回答
0

最新版本的 node-sass 3.2.0 说

此版本将 Libsass 提升到 3.2.5,带来了一系列修复。

npm install node-sass现在将安装一个 libsass >= 3.2.5 的 node-sass。

于 2015-06-12T02:17:17.710 回答