From 42c903f10caa61e2caaa74017e9d211db5d35eae Mon Sep 17 00:00:00 2001 From: gela Date: Fri, 26 Jun 2015 10:13:42 +0300 Subject: [PATCH] Remove `css-stylus-with-nib` tech --- README.md | 21 ------------------ techs/css-stylus-with-nib.js | 41 ------------------------------------ 2 files changed, 62 deletions(-) delete mode 100644 techs/css-stylus-with-nib.js diff --git a/README.md b/README.md index ce59fcd..673f0a6 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,6 @@ enb-stylus Поддержка Stylus для ENB. Пакет содержит технологии: * `enb-stylus/techs/stylus` - * `enb-stylus/techs/css-stylus-with-nib` * `enb-stylus/techs/css-stylus-with-autoprefixer` Установка: @@ -35,26 +34,6 @@ stylus nodeConfig.addTech(require('enb-stylus/techs/stylus')); ``` -css-stylus-with-nib -------------------- - -Собирает *css*-файлы вместе со *styl*-файлами по deps'ам, обрабатывает инклуды и ссылки, сохраняет в виде `?.css`. -При сборке *styl*-файлов использует `nib`. - -**Опции** - -* *String* **target** — Результирующий таргет. По умолчанию `?.css`. -* *Boolean* **compress** - Минифицировать результирующий CSS. По умолчанию `false`. -* *String* **prefix** - Префикс, добавляемый классам в результирующем CSS. По умолчанию `''`. -* *Object* **variables** — Дополнительные переменные окружения для `stylus`. -* *String* **filesTarget** — files-таргет, на основе которого получается список исходных файлов - (его предоставляет технология `files`). По умолчанию — `?.files`. - -**Пример** - -```javascript -nodeConfig.addTech(require('enb-stylus/techs/css-stylus-with-nib')); -``` css-stylus-with-autoprefixer ---------------------------- diff --git a/techs/css-stylus-with-nib.js b/techs/css-stylus-with-nib.js deleted file mode 100644 index 249ae20..0000000 --- a/techs/css-stylus-with-nib.js +++ /dev/null @@ -1,41 +0,0 @@ -/** - * css-stylus-with-nib - * =================== - * - * Собирает *css*-файлы вместе со *styl*-файлами по deps'ам, обрабатывает инклуды и ссылки, сохраняет в виде `?.css`. - * При сборке *styl*-файлов использует `nib`. - * - * **Опции** - * - * * *String* **target** — Результирующий таргет. По умолчанию `?.css`. - * * *Object* **variables** — Дополнительные переменные окружения для `stylus`. - * * *String* **filesTarget** — files-таргет, на основе которого получается список исходных файлов - * (его предоставляет технология `files`). По умолчанию — `?.files`. - * - * **Пример** - * - * ```javascript - * nodeConfig.addTech(require('enb-stylus/techs/css-stylus-with-nib')); - * ``` - */ - -module.exports = require('./stylus').buildFlow() - .name('css-stylus-with-nib') - .methods({ - _configureRenderer: function (renderer) { - var nib; - - try { - nib = require('nib'); - } catch (e) { - throw new Error( - 'The technology "css-stylus-with-nib" cannot be executed ' + - 'because the npm module "nib" was not found.' - ); - } - - renderer.use(nib()); - return renderer; - } - }) - .createTech();