1
0
Fork 0
Commit graph

12 commits

Author SHA1 Message Date
joostdecock
36bbf42ec4 fix(jaeger): Add missing options in translation config 2023-07-02 14:48:52 +02:00
Benjamin F
fb54bc5d18 fix(jaeger): Restore design option omitted during v3 port 2023-04-30 06:10:45 -07:00
Enoch Riese
7551f09b8d use presets for common hide configurations 2023-03-08 14:37:09 -06:00
Enoch Riese
0c501f642d update hide config in all designs 2023-03-08 14:37:09 -06:00
Joost De Cock
76a2a27e4d fix(jaeger): Add missing lengthBonus option. Fixes #2881 2022-09-28 21:58:39 +02:00
Joost De Cock
5dc7401308 chore(core): Use hide, not render 2022-09-18 18:16:17 +02:00
joostdecock
7bf70f12d3 chore(jaeger): Port to v3 stage 2 2022-09-11 15:48:48 +02:00
Benjamin F
f9e95b788b Add innerPocketBag and innerPocketWelt parts to Jaeger. 2022-09-05 22:19:10 -07:00
Joost De Cock
557fc59d1d chore(jaeger): Ported to v3 2022-09-05 18:47:21 +02:00
Benjamin F
5107c911c3 Bulk rename all design files from *.js to *.mjs 2022-09-02 11:57:22 -07:00
Joost De Cock
0f8ee0506c feat(jaeger): Add support for high-bust draft. See #2386 2022-07-09 17:43:57 +02:00
Joost De Cock
e4035b2509 chore: Re-structure workspaces, enforce build order
These are some changes in the way the monorepo is structured,
that are aimed at making it easier to get started.

There are two important changes:

**Multiple workspaces**

We had a yarn workspaces setup at `packages/*`. But our monorepo has
grown to 92 packages which can be overwhelming for people not familiar
with the package names.

To remedy this, I've split it into 4 different workspaces:

- `designs/*`: Holds FreeSewing designs (think patterns)
- `plugins/*`: Holds FreeSewing plugins
- `packages/*`: Holds other packages published on NPM
- `sites/*`: Holds software that is not published as an NPM package,
  such as our various websites and backend API

This should make it easier to find things, and to answer questions like
*where do I find the code for the plugins*.

**Updated reconfigure script to handle build order**

One problem when bootstrapping the repo is inter-dependencies between
packages. For example, building a pattern will only work once
`plugin-bundle` is built. Which will only work once all plugins in the
bundle or built. And that will only work when `core` is built, and so
on.

This can be frustrating for new users as `yarn buildall` will fail.
And it gets overlooked by seasoned devs because they're likely to have
every package built in their repo so this issue doesn't concern them.

To remedy this, we now have a `config/build-order.mjs` file and the
updated `/scripts/reconfigure.mjs` script will enforce the build order
so that things *just work*.
2022-06-16 17:11:31 +02:00