Skip to content

Commit 3e0a157

Browse files
Merge #939
939: Migration to turborepo r=bidoubiwa a=bidoubiwa fixes: #937 Co-authored-by: Charlotte Vermandel <[email protected]> Co-authored-by: cvermand <[email protected]>
2 parents 4a98657 + 553a236 commit 3e0a157

File tree

166 files changed

+9693
-44767
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

166 files changed

+9693
-44767
lines changed

.changeset/README.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# Changesets
2+
3+
Hello and welcome! This folder has been automatically generated by `@changesets/cli`, a build tool that works
4+
with multi-package repos, or single-package repos to help you version and publish your code. You can
5+
find the full documentation for it [in our repository](https://github.com/changesets/changesets)
6+
7+
We have a quick list of common questions to get you started engaging with this project in
8+
[our documentation](https://github.com/changesets/changesets/blob/main/docs/common-questions.md)

.changeset/config.json

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
{
2+
"$schema": "https://unpkg.com/@changesets/[email protected]/schema.json",
3+
"changelog": "@changesets/cli/changelog",
4+
"commit": false,
5+
"fixed": [],
6+
"linked": [],
7+
"access": "restricted",
8+
"baseBranch": "main",
9+
"updateInternalDependencies": "patch",
10+
"ignore": [
11+
"@meilisearch/geo-playground",
12+
"@meilisearch/vanilla-playground",
13+
"@meilisearch/angular-playground",
14+
"@meilisearch/vue3-ts-playground",
15+
"@meilisearch/react-playground",
16+
"@meilisearch/local-react-playground"
17+
]
18+
}

.changeset/nice-monkeys-rest.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"@meilisearch/instant-meilisearch": patch
3+
---
4+
5+
Migrate the current repository to a turbo architecture

.changeset/pre.json

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
{
2+
"mode": "pre",
3+
"tag": "turbo-migration",
4+
"initialVersions": {
5+
"@meilisearch/instant-meilisearch": "0.10.1",
6+
"eslint-config-meilisearch": "0.0.0",
7+
"@meilisearch/angular-playground": "0.0.0",
8+
"@meilisearch/geo-playground": "0.0.0",
9+
"@meilisearch/vanilla-playground": "0.0.0",
10+
"@meilisearch/local-react-playground": "0.0.0",
11+
"@meilisearch/react-playground": "0.0.0",
12+
"@meilisearch/vue3-ts-playground": "0.0.0"
13+
},
14+
"changesets": [
15+
"nice-monkeys-rest"
16+
]
17+
}

.eslintignore

Lines changed: 0 additions & 8 deletions
This file was deleted.

.github/release-draft-template.yml

Lines changed: 0 additions & 33 deletions
This file was deleted.

.github/scripts/check-release.sh

Lines changed: 0 additions & 19 deletions
This file was deleted.

.github/scripts/check-tag-format.sh

Lines changed: 0 additions & 35 deletions
This file was deleted.
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: Dependabot auto-merge
2+
3+
on:
4+
pull_request:
5+
branches:
6+
- 'dependabot/**'
7+
8+
jobs:
9+
auto-merge:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- uses: actions/checkout@v2
13+
- uses: ahmadnassri/action-dependabot-auto-merge@v2
14+
with:
15+
target: patch
16+
github-token: ${{secrets.GITHUB_TOKEN}}

.github/workflows/meilisearch-prototype-tests.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -50,15 +50,14 @@ jobs:
5050
node-version: 16
5151
cache: yarn
5252
- name: Install dependencies
53-
run: yarn --dev && yarn --cwd ./tests/env/react
54-
- name: Setup Meilisearch Index
55-
run: yarn local:env:setup
53+
run: yarn
5654
- name: Run local browser tests
5755
uses: cypress-io/github-action@v5
5856
with:
57+
project: ./playgrounds/local-react
5958
wait-on: 'http://localhost:7700'
6059
# Tests are only done on one playground to avoid long testing time
61-
start: yarn local:env:react
60+
start: yarn playground:local-react
6261
env: playground=local
6362
- uses: actions/upload-artifact@v3
6463
if: failure()

0 commit comments

Comments
 (0)