Skip to content

Instantly share code, notes, and snippets.

@samueldr
Last active April 13, 2019 17:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save samueldr/e9db4de78369fffa5b9f01a0712a960d to your computer and use it in GitHub Desktop.
Save samueldr/e9db4de78369fffa5b9f01a0712a960d to your computer and use it in GitHub Desktop.
$ nix-shell
[nix-shell:~/tmp/tmp/stencil-cli]$ npm install @bigcommerce/stencil-cli
[...]
[nix-shell:~/tmp/tmp/stencil-cli]$ npx stencil
Usage: stencil [options] [command]
Options:
-V, --version output the version number
-h, --help output usage information
Commands:
init Interactively create a .stencil file which configures how to run a BigCommerce store locally.
start Starts up BigCommerce store using theme files in the current directory.
bundle Bundles up the theme into a zip file which can be uploaded to BigCommerce.
release Create a new release in the theme's github repository.
push Bundles up the theme into a zip file and uploads it to your store.
help [cmd] display help for [cmd]
[nix-shell:~/tmp/tmp/stencil-cli]$ node_modules/.bin/stencil
Usage: stencil [options] [command]
Options:
-V, --version output the version number
-h, --help output usage information
Commands:
init Interactively create a .stencil file which configures how to run a BigCommerce store locally.
start Starts up BigCommerce store using theme files in the current directory.
bundle Bundles up the theme into a zip file which can be uploaded to BigCommerce.
release Create a new release in the theme's github repository.
push Bundles up the theme into a zip file and uploads it to your store.
help [cmd] display help for [cmd]
{
pkgs ? import <nixpkgs> {}
}:
pkgs.mkShell {
buildInputs = with pkgs; [
nodejs
];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment