# Releasing `@intuned/files`

Use the release script:

```bash
yarn release {prod|dev} <version> [webapp-repo-path]
```

- `prod` publishes `@intuned/files` and requires a `X.Y.Z` version.
- `dev` publishes `@intuned/files-dev` (any version accepted).
- `webapp-repo-path` defaults to `../../WebApp` and is only used on `prod` to
  update authoring templates and `packageVersions.json`.

Example:

```bash
yarn release dev 0.1.0
yarn release prod 0.1.0 ../../WebApp
```

The script builds the package, updates the package name/version, and runs
`npm publish`.
