Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Использование enb-stylus без deps #190

Open
vaseker opened this issue May 30, 2018 · 2 comments
Open

Использование enb-stylus без deps #190

vaseker opened this issue May 30, 2018 · 2 comments

Comments

@vaseker
Copy link

vaseker commented May 30, 2018

Привет! Можно ли использовать enb-stylus для сборки единичного файла, лежашего вне enb-структуры (не в .blocks, .bundles, не имеющего ни deps, ни зависимостей от других уровней)?

Такая конструкция

config.node('../some/dir', nodeConfig => {
        nodeConfig.addTarget('_?.css');
        nodeConfig.addTech(
            [require('enb-stylus/techs/stylus'), {
                autoprefixer: { browsers: config.autoprefixer },
                compress: true,
                target: '_?.css',
            }])
        );
    })

влечет ошибку Error: There is no tech for target ../some/dir.files., потому что enb/lib/node/node.requireSources выдает для первого вызова

{ source: '_dir.css',
  targetObj:
   { started: false,
     deferred: { _promise: [Object] },
     tech:
      { _options: [Object],
        node: [Object],
        _sourcemap: false,
        _autoprefixer: [Object],
        _compress: true,
        _target: '_dir.css',
        _filesTarget: 'dir.files'} } }

в котором видно параметр _filesTarget: 'dir.files' (который, как я понимаю, нужен для сбора .css,.styl файлов для компиляции), для которого и ожидается технология.

Спасибо.

@tadatuta
Copy link
Member

Для единичного файла есть смысл использовать stylus напрямую, без enb

@vaseker
Copy link
Author

vaseker commented May 31, 2018

Дело в том, что не хочется добавлять еще одну систему сборки для одного файла или писать npm-таски.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants