Theme Kit is a cross-platform command line tool to build and maintain storefront themes with Sass Processing support on the 29 Next platform.
Theme Kit is a python package available on PyPi
If you already have python
and pip
, install with the following command:
pip install next-theme-kit
See how to install python
and pip
with HomeBrew. Once you have completed this step you can install using the pip
instructions above.
-
Option 1 (Recommended) - Windows 10 and above feature WSL (Windows Subsystem for Linux) which provides a native Linux environment, see how to Install WSL with Ubuntu. Once you have installed WSL, follow the best practice guides to configure and use with VS Code and then follow the
pip
instructions above to install Theme Kit. -
Option 2 - Installing
python
in Windows natively can be done with through the Windows App Store. Recommend using Windows Powershell. This route is a little more tricky and some knowledge on how to manage python in windows will be required.
Use Python Virtual Environments - For Mac, Windows, and Linux, it's a best practice to use a Python Virtual Environment to isolate python packages and dependecies to reduce potential conflicts or errors, more on creating a Python Virutal Environment.
Update to the latest version of Theme Kit with the following command:
pip install next-theme-kit --upgrade
⚠️ ImportantAs of version 1.0.2, the store authentication uses Oauth and requires creating a store Oauth App with
theme:read
andtheme:write
permissions.
With the package installed, you can now use the commands inside your theme directory and work on a storefront theme.
Available Commands
ntk init
- initialize a new thementk list
- list all available themesntk checkout
- checkout an existing thementk pull
- download existing theme or theme filentk push
- push current theme state to storentk watch
- watch for local changes and automatically push changes to storentk sass
- process sass to css, see Sass Processing
Important - You must pass the apikey
and store
parameters for all commands if there is not an existing config.yml
file in your current directory.
Initialize a new theme which will create the theme on a store and create an initial config.yml file
ntk init --name="<Theme Name>" --apikey="<api key>" --store="<https://storedomain.com>"
Short | Long | Description |
---|---|---|
-a | --apikey | API Key used to connect to the store. |
-s | --store | Full domain of the store. |
-n | --name | Name of the new theme |
List all themes installed on the theme.
ntk list --apikey="<api key>" --store="<https://storedomain.com>"
Short | Long | Description |
---|---|---|
-a | --apikey | API Key used to connect to the store. |
-s | --store | Full domain of the store. |
Checkout a theme from your store to pull it into your directory.
ntk checkout --theme_id=<id> --apikey="<api key>" --store="<https://storedomain.com>"
Short | Long | Description |
---|---|---|
-a | --apikey | API Key used to connect to the store. |
-s | --store | Full domain of the store. |
-t | --theme_id | ID of the theme. |
Pull a theme from your store to into your directory.
ntk pull --theme_id=<id> --apikey="<api key>" --store="<https://storedomain.com>"
Short | Long | Description |
---|---|---|
-a | --apikey | API Key used to connect to the store. |
-s | --store | Full domain of the store. |
-t | --theme_id | ID of the theme. |
Push all theme files from your local directory to the store.
ntk push --theme_id=<id> --apikey="<api key>" --store="<https://storedomain.com>"
Short | Long | Description |
---|---|---|
-a | --apikey | API Key used to connect to the store. |
-s | --store | Full domain of the store. |
-t | --theme_id | ID of the theme. |
Watch for file changes and additions in your local directory and automatically push them to the store.
ntk watch --theme_id=<id> --apikey="<api key>" --store="<https://storedomain.com>"
Short | Long | Description |
---|---|---|
-a | --apikey | API Key used to connect to the store. |
-s | --store | Full domain of the store. |
-t | --theme_id | ID of the theme. |
Process sass
files to CSS files for inclusion in your storefront. See Sass Processing for more details.
ntk sass
Short | Long | Description |
---|---|---|
-sos | --sass_output_style | Options are nested, expanded, compact, or compressed |
Theme kit includes support for Sass processing via Python Libsass. Sass processing includes support for variables, imports, nesting, mixins, inheritance, custom functions, and more.
How it works
- Put
scss
files in top levelsass
directory. - Run
ntk sass
orntk watch
to process themesass
files. - Top level
scss
files will be processed tocss
files in the asset directory with the same name.
Example Theme with Sass Structure
├── assets
│ ├── styles.css // reference this asset file in templates
├── sass
│ ├── _base.scss
│ ├── _variables.scss
│ └── styles.scss // processed to assets/main.css
Important - Sass processing is only supported on local, files in the sass
directory are uploaded to your store for storage but cannot be edited in the store theme editor.
Configure Default Output Style
Change the default sass output style in config.yml
, example below.
development:
apikey: <api key>
sass:
output_style: compressed // options: nested, expanded, compact, or compressed
store: <store url>
theme_id: <theme id>