1
0
Fork 0
Commit graph

16 commits

Author SHA1 Message Date
Joost De Cock
0becde35af chore: Remove lint 2023-09-18 19:38:39 +02:00
Joost De Cock
0b75ec1452 chore(simone): Prepare for v3 beta 2023-09-18 19:26:36 +02:00
joostdecock
d8b5f3c27c feat(simone): Add i18n named export 2023-07-02 16:42:41 +02:00
Enoch Riese
64bffa5ff9 fix (designs) add missing measurements to design configs 2023-06-20 18:18:39 -05:00
Benjamin F
250b09c916 fix(simone): Restore design option omitted during v3 port 2023-04-30 06:14:47 -07:00
Benjamin F
77ea8add40 fix(simone): Only show notches and logo if complete 2023-04-26 11:28:50 -07:00
Enoch Riese
0c501f642d update hide config in all designs 2023-03-08 14:37:09 -06:00
Joost De Cock
c97eac9029 fix(simone): Added missing option. See #2881 2022-09-28 22:03:25 +02:00
joostdecock
f31a158398 fix(simone): Hide fba-front part 2022-09-25 10:55:37 +02:00
Joost De Cock
5dc7401308 chore(core): Use hide, not render 2022-09-18 18:16:17 +02:00
joostdecock
19cf0d46eb chore(simone): Port to v3 stage 2 2022-09-11 16:55:55 +02:00
joostdecock
079adcb261 chore(simone): Ported to v3 2022-09-04 18:20:39 +02:00
Benjamin F
5107c911c3 Bulk rename all design files from *.js to *.mjs 2022-09-02 11:57:22 -07:00
Benjamin F
c36a151ced Add Bust-aligned buttons option to Simone. 2022-08-17 13:27:06 -07:00
Joost De Cock
6f76474c7a fix(simone): Don't do negative FBA. Closes #2121 2022-07-09 17:05:00 +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