- Created
CHANGELOG.md
- The
watched-sdk
command line tool will be legacy starting with v0.32 - The
@watchedcom/create
command line tool is printing a legacy message - The
testAddon
function in@watchedcom/test
is printing a legacy message when it's used
Since the watched-sdk
command is legacy, you can't export your addons anymore.
-
Install
ts-node-dev
:npm install --save-dev ts-node-dev
-
package.json
(change thestart
anddevelop
scripts){ "scripts": { "build": "tsc", "start": "node .", "develop": "ts-node-dev --transpileOnly src", "test": "jest" } }
-
src/index.ts
import { runCli } from "@watchedcom/sdk"; // Your code here runCli([yourAddon, anotherAddon]);