MCPcopy Create free account
hub / github.com/bigcommerce/stencil-cli / stencilPull

Function stencilPull

lib/stencil-pull.js:6–21  ·  view source on GitHub ↗
(options = {}, callback)

Source from the content-addressed store, hash-verified

4
5// eslint-disable-next-line default-param-last
6function stencilPull(options = {}, callback) {
7 async.waterfall(
8 [
9 async.constant(options),
10 stencilPushUtils.readStencilConfigFile,
11 stencilPushUtils.getStoreHash,
12 stencilPushUtils.getChannels,
13 stencilPushUtils.promptUserForChannel,
14 stencilPullUtils.getChannelActiveTheme,
15 stencilPullUtils.getThemeConfiguration,
16 stencilPullUtils.getCurrentVariation,
17 stencilPullUtils.mergeThemeConfiguration,
18 ],
19 callback,
20 );
21}
22export default stencilPull;

Callers 1

stencil-pull.jsFile · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected