aliaset
Version:
twind monorepo
48 lines (47 loc) • 2.3 kB
JSON
{
// Which script in package.json to run to install instead of `npm ci` or `yarn install`,
// can be `false` if you want to skip this step.
"installCommand": "install",
// Which script in package.json to run to build,
// can be `false` if you want to skip this step.
"buildCommand": "build",
// If you have a monorepo, put the paths of the packages here. We'll infer the package names.
// Globs are supported.
"packages": ["packages/*"],
// If you don't publish from the package directory, specify per dependency
// where the contents of the built dependency are. These files will be uploaded
// to our registry.
"publishDirectory": {
"@twind/cdn": "packages/cdn/dist",
"@twind/core": "packages/core/dist",
"@twind/intellisense": "packages/intellisense/dist",
"@twind/preset-autoprefix": "packages/preset-autoprefix/dist",
"@twind/preset-ext": "packages/preset-ext/dist",
"@twind/preset-line-clamp": "packages/preset-line-clamp/dist",
"@twind/preset-tailwind": "packages/preset-tailwind/dist",
"@twind/preset-tailwind-forms": "packages/preset-tailwind-forms/dist",
"@twind/preset-typography": "packages/preset-typography/dist",
"gatsby-plugin-twind": "packages/with-gatsby/dist",
"@twind/with-next": "packages/with-next/dist",
"@twind/with-remix": "packages/with-remix/dist",
"@twind/with-sveltekit": "packages/with-sveltekit/dist"
},
// A list of sandboxes that you want generated for a PR, if this list
// is not set we will default to `vanilla`. The built library will automatically
// be installed in the fork of these sandboxes in the place of the library. So if
// you have a sandbox with `lodash`, and you built `lodash` and `vue`, we will only
// replace `lodash` with the built version.
// You can also set absolute paths to a directory in your repository. We will make sure
// to generate a sandbox from the contents of that directory.
"sandboxes": [
"/examples/basic",
"/examples/playground",
"/examples/with-gatsby",
"/examples/with-next",
"/examples/with-remix",
"/examples/with-sveltekit"
],
// Node.js version to use for building the PR.
// Supported versions are '10' (10.24.1, default), '12' (12.22.7), '14' (14.18.1) and '16' (16.13.0).
"node": "18"
}