diff --git a/workspace/contented-config/package.json b/workspace/contented-config/package.json index a9655f8a6..e227c6141 100644 --- a/workspace/contented-config/package.json +++ b/workspace/contented-config/package.json @@ -3,6 +3,9 @@ "private": true, "type": "module", "main": "./index.mjs", + "scripts": { + "build": "" + }, "dependencies": { "@contentedjs/contented": "^7.1.0", "@contentedjs/contented-pipeline-md": "^7.1.0", diff --git a/workspace/contented-config/turbo.json b/workspace/contented-config/turbo.json new file mode 100644 index 000000000..2f05429e5 --- /dev/null +++ b/workspace/contented-config/turbo.json @@ -0,0 +1,9 @@ +{ + "$schema": "https://turborepo.org/schema.json", + "extends": ["//"], + "pipeline": { + "build": { + "inputs": ["index.mjs"] + } + } +}