@nuasite/cli 0.0.35 → 0.0.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 +3 -3
- package/dist/index.js +77 -2390
- package/dist/types/build.d.ts.map +1 -1
- package/dist/types/tsconfig.tsbuildinfo +1 -1
- package/package.json +2 -2
- package/src/build.ts +1 -1
- package/src/index.ts +88 -19
package/README.md
CHANGED
|
@@ -42,12 +42,12 @@ You can also drive the builder yourself if you need to supply a custom inline
|
|
|
42
42
|
config:
|
|
43
43
|
|
|
44
44
|
```ts
|
|
45
|
-
import { build } from '@nuasite/build'
|
|
46
45
|
import { agentsSummary } from '@nuasite/agent-summary'
|
|
46
|
+
import { build } from '@nuasite/build'
|
|
47
47
|
|
|
48
48
|
await build({
|
|
49
|
-
|
|
50
|
-
|
|
49
|
+
root: new URL('../site', import.meta.url),
|
|
50
|
+
integrations: [agentsSummary()],
|
|
51
51
|
})
|
|
52
52
|
```
|
|
53
53
|
|