├── .circleci └── config.yml ├── .editorconfig ├── .eslintrc.yml ├── .gitignore ├── LICENSE ├── README.md ├── bin └── houl.js ├── docs ├── .vuepress │ └── config.js ├── README.md ├── guide │ ├── README.md │ ├── command.md │ ├── config.md │ └── task.md └── ja │ ├── README.md │ └── guide │ ├── README.md │ ├── command.md │ ├── config.md │ ├── installation.md │ └── task.md ├── example ├── .gitignore ├── houl.config.json ├── houl.task.js ├── package.json └── src │ ├── css │ ├── index.scss │ └── internal │ │ └── _variables.scss │ ├── index.html │ └── js │ ├── index.js │ └── vendor │ └── lib.js ├── lib ├── api.js ├── build.js ├── cache-stream.js ├── cache.js ├── cli │ ├── build.js │ ├── dev.js │ └── watch.js ├── color.js ├── config.js ├── dep-cache.js ├── dep-resolver.js ├── dev.js ├── externals │ ├── browser-sync.js │ └── watcher.js ├── loggers │ ├── build-logger.js │ ├── dev-logger.js │ └── watch-logger.js ├── models │ ├── config.js │ ├── rule.js │ └── task.js ├── task-stream.js ├── util.js └── watch.js ├── package.json ├── prettier.config.js ├── release.sh └── test ├── .eslintrc.yml ├── e2e ├── build.spec.js ├── dev.spec.js ├── setup.js └── watch.spec.js ├── expected ├── added │ ├── css │ │ └── index.css │ ├── example.html │ ├── index.html │ └── js │ │ ├── index.js │ │ └── vendor │ │ └── lib.js ├── cache │ ├── css │ │ └── index.css │ └── js │ │ └── index.js ├── dev │ ├── css │ │ └── index.css │ ├── index.html │ └── js │ │ ├── index.js │ │ └── vendor │ │ └── lib.js ├── dot │ ├── .htaccess │ ├── css │ │ └── index.css │ ├── index.html │ └── js │ │ ├── index.js │ │ └── vendor │ │ └── lib.js ├── filtered │ └── css │ │ └── index.css ├── prod │ ├── css │ │ └── index.css │ ├── index.html │ └── js │ │ ├── index.js │ │ └── vendor │ │ └── lib.js └── updated │ ├── css │ └── index.css │ ├── index.html │ └── js │ ├── index.js │ └── vendor │ └── lib.js ├── fixtures ├── configs │ ├── no-taskfile.js │ ├── normal-with-preset-modify.js │ ├── normal-with-preset-options.js │ ├── normal.config.js │ ├── normal.task.js │ ├── preset-function.config.js │ ├── preset.config.js │ ├── preset.task.js │ └── test.config.json ├── e2e │ ├── .gitignore │ ├── added-src │ │ └── example.pug │ ├── houl.config.json │ ├── houl.task.js │ ├── package.json │ ├── src │ │ ├── .htaccess │ │ ├── _layouts │ │ │ └── default.pug │ │ ├── css │ │ │ ├── _variables.scss │ │ │ └── index.scss │ │ ├── index.pug │ │ └── js │ │ │ ├── _excluded.js │ │ │ ├── index.js │ │ │ └── vendor │ │ │ └── lib.js │ └── updated-src │ │ ├── css │ │ └── _variables.scss │ │ └── js │ │ ├── _excluded.js │ │ └── index.js └── sources │ ├── index.html │ ├── index.js │ ├── index.scss │ └── sources │ └── index.js ├── helpers ├── e2e.js └── index.js ├── jasmine-e2e.json ├── jasmine-helpers.js ├── jasmine-unit.json └── specs ├── api.spec.js ├── cache-stream.spec.js ├── cache.spec.js ├── config.spec.js ├── dep-cache.spec.js ├── dep-resolver.spec.js ├── env ├── dev-task.js └── prod-task.js ├── externals └── browser-sync.spec.js ├── loggers ├── build-logger.spec.js ├── dev-logger.spec.js └── watch-logger.spec.js ├── models ├── config.spec.js └── rule.spec.js ├── task-stream.spec.js └── util.spec.js /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oro-oss/houl/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oro-oss/houl/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc.yml: -------------------------------------------------------------------------------- 1 | --- 2 | extends: eslint-config-ktsn 3 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oro-oss/houl/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oro-oss/houl/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oro-oss/houl/HEAD/README.md -------------------------------------------------------------------------------- /bin/houl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oro-oss/houl/HEAD/bin/houl.js -------------------------------------------------------------------------------- /docs/.vuepress/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oro-oss/houl/HEAD/docs/.vuepress/config.js -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oro-oss/houl/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/guide/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oro-oss/houl/HEAD/docs/guide/README.md -------------------------------------------------------------------------------- /docs/guide/command.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oro-oss/houl/HEAD/docs/guide/command.md -------------------------------------------------------------------------------- /docs/guide/config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oro-oss/houl/HEAD/docs/guide/config.md -------------------------------------------------------------------------------- /docs/guide/task.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oro-oss/houl/HEAD/docs/guide/task.md -------------------------------------------------------------------------------- /docs/ja/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oro-oss/houl/HEAD/docs/ja/README.md -------------------------------------------------------------------------------- /docs/ja/guide/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oro-oss/houl/HEAD/docs/ja/guide/README.md -------------------------------------------------------------------------------- /docs/ja/guide/command.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oro-oss/houl/HEAD/docs/ja/guide/command.md -------------------------------------------------------------------------------- /docs/ja/guide/config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oro-oss/houl/HEAD/docs/ja/guide/config.md -------------------------------------------------------------------------------- /docs/ja/guide/installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oro-oss/houl/HEAD/docs/ja/guide/installation.md -------------------------------------------------------------------------------- /docs/ja/guide/task.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oro-oss/houl/HEAD/docs/ja/guide/task.md -------------------------------------------------------------------------------- /example/.gitignore: -------------------------------------------------------------------------------- 1 | /dist/ 2 | -------------------------------------------------------------------------------- /example/houl.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oro-oss/houl/HEAD/example/houl.config.json -------------------------------------------------------------------------------- /example/houl.task.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oro-oss/houl/HEAD/example/houl.task.js -------------------------------------------------------------------------------- /example/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oro-oss/houl/HEAD/example/package.json -------------------------------------------------------------------------------- /example/src/css/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oro-oss/houl/HEAD/example/src/css/index.scss -------------------------------------------------------------------------------- /example/src/css/internal/_variables.scss: -------------------------------------------------------------------------------- 1 | $color: red 2 | -------------------------------------------------------------------------------- /example/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oro-oss/houl/HEAD/example/src/index.html -------------------------------------------------------------------------------- /example/src/js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oro-oss/houl/HEAD/example/src/js/index.js -------------------------------------------------------------------------------- /example/src/js/vendor/lib.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oro-oss/houl/HEAD/example/src/js/vendor/lib.js -------------------------------------------------------------------------------- /lib/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oro-oss/houl/HEAD/lib/api.js -------------------------------------------------------------------------------- /lib/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oro-oss/houl/HEAD/lib/build.js -------------------------------------------------------------------------------- /lib/cache-stream.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oro-oss/houl/HEAD/lib/cache-stream.js -------------------------------------------------------------------------------- /lib/cache.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oro-oss/houl/HEAD/lib/cache.js -------------------------------------------------------------------------------- /lib/cli/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oro-oss/houl/HEAD/lib/cli/build.js -------------------------------------------------------------------------------- /lib/cli/dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oro-oss/houl/HEAD/lib/cli/dev.js -------------------------------------------------------------------------------- /lib/cli/watch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oro-oss/houl/HEAD/lib/cli/watch.js -------------------------------------------------------------------------------- /lib/color.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oro-oss/houl/HEAD/lib/color.js -------------------------------------------------------------------------------- /lib/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oro-oss/houl/HEAD/lib/config.js -------------------------------------------------------------------------------- /lib/dep-cache.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oro-oss/houl/HEAD/lib/dep-cache.js -------------------------------------------------------------------------------- /lib/dep-resolver.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oro-oss/houl/HEAD/lib/dep-resolver.js -------------------------------------------------------------------------------- /lib/dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oro-oss/houl/HEAD/lib/dev.js -------------------------------------------------------------------------------- /lib/externals/browser-sync.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oro-oss/houl/HEAD/lib/externals/browser-sync.js -------------------------------------------------------------------------------- /lib/externals/watcher.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oro-oss/houl/HEAD/lib/externals/watcher.js -------------------------------------------------------------------------------- /lib/loggers/build-logger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oro-oss/houl/HEAD/lib/loggers/build-logger.js -------------------------------------------------------------------------------- /lib/loggers/dev-logger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oro-oss/houl/HEAD/lib/loggers/dev-logger.js -------------------------------------------------------------------------------- /lib/loggers/watch-logger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oro-oss/houl/HEAD/lib/loggers/watch-logger.js -------------------------------------------------------------------------------- /lib/models/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oro-oss/houl/HEAD/lib/models/config.js -------------------------------------------------------------------------------- /lib/models/rule.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oro-oss/houl/HEAD/lib/models/rule.js -------------------------------------------------------------------------------- /lib/models/task.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oro-oss/houl/HEAD/lib/models/task.js -------------------------------------------------------------------------------- /lib/task-stream.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oro-oss/houl/HEAD/lib/task-stream.js -------------------------------------------------------------------------------- /lib/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oro-oss/houl/HEAD/lib/util.js -------------------------------------------------------------------------------- /lib/watch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oro-oss/houl/HEAD/lib/watch.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oro-oss/houl/HEAD/package.json -------------------------------------------------------------------------------- /prettier.config.js: -------------------------------------------------------------------------------- 1 | module.exports = require('prettier-config-ktsn') -------------------------------------------------------------------------------- /release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oro-oss/houl/HEAD/release.sh -------------------------------------------------------------------------------- /test/.eslintrc.yml: -------------------------------------------------------------------------------- 1 | --- 2 | env: 3 | jasmine: true 4 | -------------------------------------------------------------------------------- /test/e2e/build.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oro-oss/houl/HEAD/test/e2e/build.spec.js -------------------------------------------------------------------------------- /test/e2e/dev.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oro-oss/houl/HEAD/test/e2e/dev.spec.js -------------------------------------------------------------------------------- /test/e2e/setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oro-oss/houl/HEAD/test/e2e/setup.js -------------------------------------------------------------------------------- /test/e2e/watch.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oro-oss/houl/HEAD/test/e2e/watch.spec.js -------------------------------------------------------------------------------- /test/expected/added/css/index.css: -------------------------------------------------------------------------------- 1 | h1 { 2 | color: blue; 3 | } 4 | 5 | /* In dev mode */ 6 | -------------------------------------------------------------------------------- /test/expected/added/example.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oro-oss/houl/HEAD/test/expected/added/example.html -------------------------------------------------------------------------------- /test/expected/added/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oro-oss/houl/HEAD/test/expected/added/index.html -------------------------------------------------------------------------------- /test/expected/added/js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oro-oss/houl/HEAD/test/expected/added/js/index.js -------------------------------------------------------------------------------- /test/expected/added/js/vendor/lib.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oro-oss/houl/HEAD/test/expected/added/js/vendor/lib.js -------------------------------------------------------------------------------- /test/expected/cache/css/index.css: -------------------------------------------------------------------------------- 1 | h1 { 2 | color: red; 3 | } 4 | 5 | /* In dev mode */ 6 | -------------------------------------------------------------------------------- /test/expected/cache/js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oro-oss/houl/HEAD/test/expected/cache/js/index.js -------------------------------------------------------------------------------- /test/expected/dev/css/index.css: -------------------------------------------------------------------------------- 1 | h1 { 2 | color: blue; 3 | } 4 | 5 | /* In dev mode */ 6 | -------------------------------------------------------------------------------- /test/expected/dev/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oro-oss/houl/HEAD/test/expected/dev/index.html -------------------------------------------------------------------------------- /test/expected/dev/js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oro-oss/houl/HEAD/test/expected/dev/js/index.js -------------------------------------------------------------------------------- /test/expected/dev/js/vendor/lib.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oro-oss/houl/HEAD/test/expected/dev/js/vendor/lib.js -------------------------------------------------------------------------------- /test/expected/dot/.htaccess: -------------------------------------------------------------------------------- 1 | RewriteEngine On 2 | -------------------------------------------------------------------------------- /test/expected/dot/css/index.css: -------------------------------------------------------------------------------- 1 | h1 { 2 | color: blue; 3 | } 4 | 5 | /* In dev mode */ 6 | -------------------------------------------------------------------------------- /test/expected/dot/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oro-oss/houl/HEAD/test/expected/dot/index.html -------------------------------------------------------------------------------- /test/expected/dot/js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oro-oss/houl/HEAD/test/expected/dot/js/index.js -------------------------------------------------------------------------------- /test/expected/dot/js/vendor/lib.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oro-oss/houl/HEAD/test/expected/dot/js/vendor/lib.js -------------------------------------------------------------------------------- /test/expected/filtered/css/index.css: -------------------------------------------------------------------------------- 1 | h1 { 2 | color: blue; 3 | } 4 | 5 | /* In dev mode */ 6 | -------------------------------------------------------------------------------- /test/expected/prod/css/index.css: -------------------------------------------------------------------------------- 1 | h1 { 2 | color: blue; 3 | } 4 | -------------------------------------------------------------------------------- /test/expected/prod/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oro-oss/houl/HEAD/test/expected/prod/index.html -------------------------------------------------------------------------------- /test/expected/prod/js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oro-oss/houl/HEAD/test/expected/prod/js/index.js -------------------------------------------------------------------------------- /test/expected/prod/js/vendor/lib.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oro-oss/houl/HEAD/test/expected/prod/js/vendor/lib.js -------------------------------------------------------------------------------- /test/expected/updated/css/index.css: -------------------------------------------------------------------------------- 1 | h1 { 2 | color: red; 3 | } 4 | 5 | /* In dev mode */ 6 | -------------------------------------------------------------------------------- /test/expected/updated/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oro-oss/houl/HEAD/test/expected/updated/index.html -------------------------------------------------------------------------------- /test/expected/updated/js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oro-oss/houl/HEAD/test/expected/updated/js/index.js -------------------------------------------------------------------------------- /test/expected/updated/js/vendor/lib.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oro-oss/houl/HEAD/test/expected/updated/js/vendor/lib.js -------------------------------------------------------------------------------- /test/fixtures/configs/no-taskfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oro-oss/houl/HEAD/test/fixtures/configs/no-taskfile.js -------------------------------------------------------------------------------- /test/fixtures/configs/normal-with-preset-modify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oro-oss/houl/HEAD/test/fixtures/configs/normal-with-preset-modify.js -------------------------------------------------------------------------------- /test/fixtures/configs/normal-with-preset-options.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oro-oss/houl/HEAD/test/fixtures/configs/normal-with-preset-options.js -------------------------------------------------------------------------------- /test/fixtures/configs/normal.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oro-oss/houl/HEAD/test/fixtures/configs/normal.config.js -------------------------------------------------------------------------------- /test/fixtures/configs/normal.task.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oro-oss/houl/HEAD/test/fixtures/configs/normal.task.js -------------------------------------------------------------------------------- /test/fixtures/configs/preset-function.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oro-oss/houl/HEAD/test/fixtures/configs/preset-function.config.js -------------------------------------------------------------------------------- /test/fixtures/configs/preset.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oro-oss/houl/HEAD/test/fixtures/configs/preset.config.js -------------------------------------------------------------------------------- /test/fixtures/configs/preset.task.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oro-oss/houl/HEAD/test/fixtures/configs/preset.task.js -------------------------------------------------------------------------------- /test/fixtures/configs/test.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oro-oss/houl/HEAD/test/fixtures/configs/test.config.json -------------------------------------------------------------------------------- /test/fixtures/e2e/.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules/ 2 | /.tmp/ 3 | /dist/ 4 | .cache.json 5 | -------------------------------------------------------------------------------- /test/fixtures/e2e/added-src/example.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oro-oss/houl/HEAD/test/fixtures/e2e/added-src/example.pug -------------------------------------------------------------------------------- /test/fixtures/e2e/houl.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oro-oss/houl/HEAD/test/fixtures/e2e/houl.config.json -------------------------------------------------------------------------------- /test/fixtures/e2e/houl.task.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oro-oss/houl/HEAD/test/fixtures/e2e/houl.task.js -------------------------------------------------------------------------------- /test/fixtures/e2e/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oro-oss/houl/HEAD/test/fixtures/e2e/package.json -------------------------------------------------------------------------------- /test/fixtures/e2e/src/.htaccess: -------------------------------------------------------------------------------- 1 | RewriteEngine On 2 | -------------------------------------------------------------------------------- /test/fixtures/e2e/src/_layouts/default.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oro-oss/houl/HEAD/test/fixtures/e2e/src/_layouts/default.pug -------------------------------------------------------------------------------- /test/fixtures/e2e/src/css/_variables.scss: -------------------------------------------------------------------------------- 1 | $color-main: blue; 2 | -------------------------------------------------------------------------------- /test/fixtures/e2e/src/css/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oro-oss/houl/HEAD/test/fixtures/e2e/src/css/index.scss -------------------------------------------------------------------------------- /test/fixtures/e2e/src/index.pug: -------------------------------------------------------------------------------- 1 | extends /default 2 | 3 | block contents 4 | h1 Example title 5 | -------------------------------------------------------------------------------- /test/fixtures/e2e/src/js/_excluded.js: -------------------------------------------------------------------------------- 1 | console.log('This should always be excluded') 2 | -------------------------------------------------------------------------------- /test/fixtures/e2e/src/js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oro-oss/houl/HEAD/test/fixtures/e2e/src/js/index.js -------------------------------------------------------------------------------- /test/fixtures/e2e/src/js/vendor/lib.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oro-oss/houl/HEAD/test/fixtures/e2e/src/js/vendor/lib.js -------------------------------------------------------------------------------- /test/fixtures/e2e/updated-src/css/_variables.scss: -------------------------------------------------------------------------------- 1 | $color-main: red; 2 | -------------------------------------------------------------------------------- /test/fixtures/e2e/updated-src/js/_excluded.js: -------------------------------------------------------------------------------- 1 | console.log('This should be excluded still') 2 | -------------------------------------------------------------------------------- /test/fixtures/e2e/updated-src/js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oro-oss/houl/HEAD/test/fixtures/e2e/updated-src/js/index.js -------------------------------------------------------------------------------- /test/fixtures/sources/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oro-oss/houl/HEAD/test/fixtures/sources/index.html -------------------------------------------------------------------------------- /test/fixtures/sources/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oro-oss/houl/HEAD/test/fixtures/sources/index.js -------------------------------------------------------------------------------- /test/fixtures/sources/index.scss: -------------------------------------------------------------------------------- 1 | h1 { 2 | color: blue; 3 | } 4 | -------------------------------------------------------------------------------- /test/fixtures/sources/sources/index.js: -------------------------------------------------------------------------------- 1 | const foo = 'for proxy test' 2 | console.log(foo) 3 | -------------------------------------------------------------------------------- /test/helpers/e2e.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oro-oss/houl/HEAD/test/helpers/e2e.js -------------------------------------------------------------------------------- /test/helpers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oro-oss/houl/HEAD/test/helpers/index.js -------------------------------------------------------------------------------- /test/jasmine-e2e.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oro-oss/houl/HEAD/test/jasmine-e2e.json -------------------------------------------------------------------------------- /test/jasmine-helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oro-oss/houl/HEAD/test/jasmine-helpers.js -------------------------------------------------------------------------------- /test/jasmine-unit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oro-oss/houl/HEAD/test/jasmine-unit.json -------------------------------------------------------------------------------- /test/specs/api.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oro-oss/houl/HEAD/test/specs/api.spec.js -------------------------------------------------------------------------------- /test/specs/cache-stream.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oro-oss/houl/HEAD/test/specs/cache-stream.spec.js -------------------------------------------------------------------------------- /test/specs/cache.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oro-oss/houl/HEAD/test/specs/cache.spec.js -------------------------------------------------------------------------------- /test/specs/config.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oro-oss/houl/HEAD/test/specs/config.spec.js -------------------------------------------------------------------------------- /test/specs/dep-cache.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oro-oss/houl/HEAD/test/specs/dep-cache.spec.js -------------------------------------------------------------------------------- /test/specs/dep-resolver.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oro-oss/houl/HEAD/test/specs/dep-resolver.spec.js -------------------------------------------------------------------------------- /test/specs/env/dev-task.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oro-oss/houl/HEAD/test/specs/env/dev-task.js -------------------------------------------------------------------------------- /test/specs/env/prod-task.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oro-oss/houl/HEAD/test/specs/env/prod-task.js -------------------------------------------------------------------------------- /test/specs/externals/browser-sync.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oro-oss/houl/HEAD/test/specs/externals/browser-sync.spec.js -------------------------------------------------------------------------------- /test/specs/loggers/build-logger.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oro-oss/houl/HEAD/test/specs/loggers/build-logger.spec.js -------------------------------------------------------------------------------- /test/specs/loggers/dev-logger.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oro-oss/houl/HEAD/test/specs/loggers/dev-logger.spec.js -------------------------------------------------------------------------------- /test/specs/loggers/watch-logger.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oro-oss/houl/HEAD/test/specs/loggers/watch-logger.spec.js -------------------------------------------------------------------------------- /test/specs/models/config.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oro-oss/houl/HEAD/test/specs/models/config.spec.js -------------------------------------------------------------------------------- /test/specs/models/rule.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oro-oss/houl/HEAD/test/specs/models/rule.spec.js -------------------------------------------------------------------------------- /test/specs/task-stream.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oro-oss/houl/HEAD/test/specs/task-stream.spec.js -------------------------------------------------------------------------------- /test/specs/util.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oro-oss/houl/HEAD/test/specs/util.spec.js --------------------------------------------------------------------------------