This is an improvement to the development workflow for the template. Before this change, you could only run yarn dev (from packages/create-bison-app) to run the template's dev script. This is still the default functionality.
Now in addition to that, yarn dev supports a new optional argument: yarn dev [script]
So from the packages/create-bison-app directory, you can run yarn dev [script] where [script] is the name of any script in packages/create-bison-app/dist/bison-dev-app/package.json. For example, you can run yarn dev test to run the "test" script in the bison app.
How to test
In the packages/create-bison-app directory, you can run yarn dev test, yarn dev build:types, or any script from the template's package.json.
Changes
This is an improvement to the development workflow for the template. Before this change, you could only run
yarn dev
(frompackages/create-bison-app
) to run the template'sdev
script. This is still the default functionality.Now in addition to that,
yarn dev
supports a new optional argument:yarn dev [script]
So from the
packages/create-bison-app
directory, you can runyarn dev [script]
where[script]
is the name of any script inpackages/create-bison-app/dist/bison-dev-app/package.json
. For example, you can runyarn dev test
to run the "test" script in the bison app.How to test
In the
packages/create-bison-app
directory, you can runyarn dev test
,yarn dev build:types
, or any script from the template's package.json.Checklist