create-built-app
v1.3.26
Published
Node.js CLI for building Built.js themes, plugins and sites
Downloads
1,616
Readme
Create Built App
The official command line tool for creating Built.JS themes, plugins and sites
Usage
Publishing to Built Studio:
npx create-built-app publish
Updating theme (if adding or removing plugins in theme.json):
npx create-built-app update
Using the Library Locally
Follow the steps below:
Steps
- Create a global symlink to your library: Run the following command in your library folder:
npm link
This will create a global symlink to your library.
Make Changes: Edit the TypeScript files in your local library.
Watch and Compile the Changes: Run this to continuously watch for changes to the TypeScript files and recompile:
npm run watch
- Navigate to the project where you want to use the library:
cd /path/to/your/local/project
Then link the global symlink to your project:
npm link create-built-app
NOTE: For each update you make, run this command again.
- Run your command:
npx create-built-app publish
To unlink:
npm unlink -g create-built-app