1
0
Fork 0
Commit graph

21 commits

Author SHA1 Message Date
Benjamin Fan
4d1862f4ef fix(jaeger,paco,sandy): Typo 2024-03-19 19:39:27 -07:00
joostdecock
d2e320e94d fix(paco): Avoid flag/sa confusion. See #5057 2023-10-01 18:14:21 +02:00
Joost De Cock
0becde35af chore: Remove lint 2023-09-18 19:38:39 +02:00
Joost De Cock
037f69ca48 fix(paco): Replacment names 2023-09-18 11:39:41 +02:00
Joost De Cock
bfd6c0a3d3 chore(paco): Prepare for v3 beta 2023-09-18 11:04:03 +02:00
joostdecock
a781bd6480 wip(paco): Preparing for v3 beta 2023-09-18 08:55:31 +02:00
joostdecock
fabfce0be1 feat(paco): Add i18n named export 2023-07-02 16:20:27 +02: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
Benjamin F
9d4d09a409 (fix): Restore accidentally-omitted heel measurement 2022-12-04 07:20:16 -08:00
Benjamin F
926e61d2f2 (fix): Use absoluteOptions for frontPocketFlapSize 2022-12-04 07:20:16 -08:00
Joost De Cock
7dc566df4d fix(paco): Use part.hide() instead of hide() 2022-09-28 23:14:56 +02:00
Joost De Cock
7efaa462bf fix(paco): Clean before returning. Fixes #2878 2022-09-28 23:12:31 +02:00
Joost De Cock
5dc7401308 chore(core): Use hide, not render 2022-09-18 18:16:17 +02:00
joostdecock
1812f70f3f chore(paco): Port to v3 stage 2 2022-09-11 16:11:49 +02:00
Benjamin F
181c5d3aa8 Add waistband part to Paco. 2022-09-05 22:13:41 -07:00
Benjamin F
a12df8f102 Hide inherited front and back for Paco. 2022-09-05 22:13:24 -07:00
Joost De Cock
bc9332f2e0 chore(paco): Ported to v3 2022-09-05 11:38:31 +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
3dd38801c5 fix(paco): Hem allowance. Closes #2350 2022-07-09 15:29:43 +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