Sha256: 94916abea08b6cfd09761d71a128bdcba93388eca5705a75804fd520bbd240d0

Contents?: true

Size: 775 Bytes

Versions: 26

Compression:

Stored size: 775 Bytes

Contents

/*
	MIT License http://www.opensource.org/licenses/mit-license.php
	Author Tobias Koppers @sokra
*/
"use strict";

const Hook = require("./Hook");
const HookCodeFactory = require("./HookCodeFactory");

class SyncHookCodeFactory extends HookCodeFactory {
	content({ onError, onDone, rethrowIfPossible }) {
		return this.callTapsSeries({
			onError: (i, err) => onError(err),
			onDone,
			rethrowIfPossible
		});
	}
}

const factory = new SyncHookCodeFactory();

class SyncHook extends Hook {
	tapAsync() {
		throw new Error("tapAsync is not supported on a SyncHook");
	}

	tapPromise() {
		throw new Error("tapPromise is not supported on a SyncHook");
	}

	compile(options) {
		factory.setup(this, options);
		return factory.create(options);
	}
}

module.exports = SyncHook;

Version data entries

26 entries across 25 versions & 8 rubygems

Version Path
optimacms-0.1.61 spec/dummy/node_modules/tapable/lib/SyncHook.js
disco_app-0.18.0 test/dummy/node_modules/tapable/lib/SyncHook.js
disco_app-0.18.2 test/dummy/node_modules/tapable/lib/SyncHook.js
disco_app-0.16.1 test/dummy/node_modules/tapable/lib/SyncHook.js
disco_app-0.15.2 test/dummy/node_modules/tapable/lib/SyncHook.js
disco_app-0.18.4 test/dummy/node_modules/tapable/lib/SyncHook.js
disco_app-0.18.1 test/dummy/node_modules/tapable/lib/SyncHook.js
disco_app-0.12.7.pre.puma.pre.3 test/dummy/node_modules/tapable/lib/SyncHook.js
disco_app-0.14.0 test/dummy/node_modules/tapable/lib/SyncHook.js
disco_app-0.13.6.pre.puma.pre.3 test/dummy/node_modules/tapable/lib/SyncHook.js
tang-0.2.1 spec/tang_app/node_modules/tapable/lib/SyncHook.js
groonga-client-model-6.0.0 test/apps/rails6.0.3.5/node_modules/tapable/lib/SyncHook.js
groonga-client-model-6.0.0 test/apps/rails6.1.3/node_modules/tapable/lib/SyncHook.js
ruby2js-4.0.4 lib/tasks/testrails/node_modules/tapable/lib/SyncHook.js
ruby2js-4.0.3 lib/tasks/testrails/node_modules/tapable/lib/SyncHook.js
tang-0.2.0 spec/tang_app/node_modules/tapable/lib/SyncHook.js
tang-0.1.0 spec/tang_app/node_modules/tapable/lib/SyncHook.js
tang-0.0.9 spec/tang_app/node_modules/tapable/lib/SyncHook.js
enju_library-0.3.8 spec/dummy/node_modules/tapable/lib/SyncHook.js
jester-data-8.0.0 node_modules/tapable/lib/SyncHook.js