1
0
Fork 0
Commit graph

17 commits

Author SHA1 Message Date
joostdecock
c8db1f1774 chore: Reconfigure packages 2022-08-22 19:13:28 +02:00
joostdecock
a102acb6aa chore: Reconfigure packages 2022-08-22 15:39:44 +02:00
dependabot[bot]
c8cc7542c5
chore(deps): Bump nodemailer from 6.7.7 to 6.7.8
Bumps [nodemailer](https://github.com/nodemailer/nodemailer) from 6.7.7 to 6.7.8.
- [Release notes](https://github.com/nodemailer/nodemailer/releases)
- [Changelog](https://github.com/nodemailer/nodemailer/blob/master/CHANGELOG.md)
- [Commits](https://github.com/nodemailer/nodemailer/compare/v6.7.7...v6.7.8)

---
updated-dependencies:
- dependency-name: nodemailer
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
2022-08-12 04:10:02 +00:00
dependabot[bot]
6cd417629a
chore(deps): Bump jszip from 3.10.0 to 3.10.1
Bumps [jszip](https://github.com/Stuk/jszip) from 3.10.0 to 3.10.1.
- [Release notes](https://github.com/Stuk/jszip/releases)
- [Changelog](https://github.com/Stuk/jszip/blob/main/CHANGES.md)
- [Commits](https://github.com/Stuk/jszip/compare/v3.10.0...v3.10.1)

---
updated-dependencies:
- dependency-name: jszip
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
2022-08-03 04:09:19 +00:00
Joost De Cock
d6019deb02 chore: Fixing linter warnings 2022-07-12 21:23:14 +02:00
Joost De Cock
15573ba3ca
Merge pull request #2383 from freesewing/dependabot/npm_and_yarn/nodemailer-6.7.7
build(deps): bump nodemailer from 6.7.5 to 6.7.7
2022-07-11 18:23:20 +02:00
Joost De Cock
4702eab31c chore(backend): Don't run tests in CI (for now) 2022-07-11 18:22:27 +02:00
dependabot[bot]
1457c71e4a
build(deps): bump nodemailer from 6.7.5 to 6.7.7
Bumps [nodemailer](https://github.com/nodemailer/nodemailer) from 6.7.5 to 6.7.7.
- [Release notes](https://github.com/nodemailer/nodemailer/releases)
- [Changelog](https://github.com/nodemailer/nodemailer/blob/master/CHANGELOG.md)
- [Commits](https://github.com/nodemailer/nodemailer/compare/v6.7.5...v6.7.7)

---
updated-dependencies:
- dependency-name: nodemailer
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
2022-07-08 15:33:27 +00:00
Joost De Cock
f7b9a8d52f chore: Reconfigure after version bump 2022-07-02 20:20:43 +02:00
Joost De Cock
aafcedf413 chore: Reconfigure packages 2022-06-30 12:10:37 +02:00
dependabot[bot]
530c543ac6
build(deps-dev): bump backpack-core from 0.7.0 to 0.8.4
Bumps [backpack-core](https://github.com/palmerhq/backpack) from 0.7.0 to 0.8.4.
- [Release notes](https://github.com/palmerhq/backpack/releases)
- [Commits](https://github.com/palmerhq/backpack/compare/v0.7.0...v0.8.4)

---
updated-dependencies:
- dependency-name: backpack-core
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
2022-06-29 04:12:50 +00:00
Joost De Cock
9ef103fb64 release: 2.21.1 2022-06-28 08:52:21 +02:00
Joost De Cock
2f50d8f684 chore: Reconfigure packages 2022-06-27 12:52:09 +02:00
Joost De Cock
943be591cb chore: Reconfigure packages 2022-06-27 11:44:16 +02:00
Joost De Cock
074361ccee chore: Version bump 2.21.0-rc.2 2022-06-24 20:26:29 +02:00
Joost De Cock
4cba6f1804 chore: Reconfigure packages 2022-06-22 16:00: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