builder.io 1.1.36 → 1.1.37
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +12 -0
- package/cli/index.cjs +73 -73
- package/cli/index.cjs.map +3 -3
- package/core/index.cjs +32 -32
- package/core/index.mjs +32 -32
- package/node/index.cjs +1 -1
- package/node/index.mjs +1 -1
- package/package.json +1 -1
- package/server/index.cjs +3 -3
- package/server/index.mjs +3 -3
- package/types/cli/figma.d.ts +1 -0
- package/types/core/adapters/angular/angular-ensure-config-plugin.d.ts +1 -1
package/README.md
CHANGED
|
@@ -100,3 +100,15 @@ module.exports = {
|
|
|
100
100
|
plugins: [new BuilderDevToolsPlugin()],
|
|
101
101
|
};
|
|
102
102
|
```
|
|
103
|
+
|
|
104
|
+
## CLI
|
|
105
|
+
|
|
106
|
+
Devtools can also be started with a CLI command, which could be useful if there is a custom setup that doesn't fit into one of the above solutions. Below is an example of running CLI from an npm script:
|
|
107
|
+
|
|
108
|
+
```json
|
|
109
|
+
{
|
|
110
|
+
"scripts": {
|
|
111
|
+
"devtools": "builder-dev-tools"
|
|
112
|
+
}
|
|
113
|
+
}
|
|
114
|
+
```
|