CLI
@myjsblock/cli
Last updated
Was this helpful?
@myjsblock/cli
Last updated
Was this helpful?
A CLI package to create, maintain, and publish javascript block projects to AppMachine Flutter applications.
Using the CLI package, you're able to connect a local javascript project to your AppMachine Project. The CLI provides multiple commands to create, maintain and publish new blocks.
The CLI can be globally installed on your machine, so you can easily use it across projects.
NPM
Yarn
Links your local directory to a Block Project, saving a credentials file in your project root.
Push your local project to the AppMachine server.
Displays helpful information for the available commands.
Instead of supplying the --token
and --secret
arguments, you may create a myjsblock.credentials.json
file in your project directory.
If you use a version control system like Git, make sure you add the myjsblock.credentials.json
file to the .gitignore
file. This will prevent it from being saved in version control and is a good security measure.
Some advanced configuration requires a myjsblock.config.json
file in your project directory. This enables you to change settings like ouputDirectory
and entryFile
for your project.
An example of such a file would be:
entryFile
string
index.html
outputDirectory
string
dist
This changes the output directory for your project. The default value is dist
. The contents of this directory will be uploaded to the server by the CLI.
This file should follow the following format, using your own :
Config Properties
Output Directory
If you run into issues or have a question, please open an issue .