Skip to content

Commit f4ad8ba

Browse files
Merge pull request #257 from domicileapp/dev
release
2 parents c860c6b + 7bfa46c commit f4ad8ba

File tree

292 files changed

+28762
-32101
lines changed

Some content is hidden

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

292 files changed

+28762
-32101
lines changed

.editorconfig

+4
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,10 @@ indent_size = 2
88
insert_final_newline = true
99
trim_trailing_whitespace = true
1010

11+
[*.bazel]
12+
indent_style = space
13+
indent_size = 4
14+
1115
[*.md]
1216
max_line_length = off
1317
trim_trailing_whitespace = false

.github/labels.yml

+15-17
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,17 @@
11
- name: category/core
2-
color: '006B75'
2+
color: 006B75
33
- name: category/api
4-
color: '006B75'
4+
color: 006B75
55
- name: category/db
6-
color: '006B75'
6+
color: 006B75
77
- name: category/web
8-
color: '006B75'
8+
color: 006B75
99
- name: category/docker
10-
color: '006B75'
10+
color: 006B75
1111
- name: category/kubernetes
12-
color: '006B75'
12+
color: 006B75
1313
- name: category/deps
14-
color: '006B75'
15-
14+
color: 006B75
1615
- name: lifecycle/active
1716
description: Actively being worked on by a community member or maintainer.
1817
color: '5319E7'
@@ -35,20 +34,19 @@
3534
color: '5319E7'
3635
- name: lifecycle/needs-rebase
3736
color: '5319E7'
38-
3937
- name: type/bug
40-
color: 'FBCA04'
38+
color: FBCA04
4139
- name: type/deprecation
42-
color: 'FBCA04'
40+
color: FBCA04
4341
- name: type/docs
44-
color: 'FBCA04'
42+
color: FBCA04
4543
- name: type/feature
46-
color: 'FBCA04'
44+
color: FBCA04
4745
- name: type/meta
48-
color: 'FBCA04'
46+
color: FBCA04
4947
- name: type/security
50-
color: 'FBCA04'
48+
color: FBCA04
5149
- name: type/support
52-
color: 'FBCA04'
50+
color: FBCA04
5351
- name: type/tests
54-
color: 'FBCA04'
52+
color: FBCA04

.github/workflows/release.yml

+5-3
Original file line numberDiff line numberDiff line change
@@ -7,20 +7,22 @@ on:
77
workflow_dispatch:
88
jobs:
99
release:
10-
name: Release
1110
runs-on: ubuntu-latest
1211
steps:
1312
- name: Checkout
1413
uses: actions/checkout@v3
1514
with:
1615
fetch-depth: 0
16+
1717
- name: Setup Node.js
1818
uses: actions/setup-node@v3
1919
with:
2020
node-version: 'lts/*'
21+
2122
- name: Install dependencies
22-
run: npm ci
23+
run: yarn workspace domicile install
24+
2325
- name: Release
2426
env:
2527
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
26-
run: npx semantic-release
28+
run: yarn semantic-release

.gitignore

+1-1
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ dist
104104
# TernJS port file
105105
.tern-port
106106

107-
.DS_Store
107+
DS_Store
108108
*/.quasar/**
109109

110110

.npmrc

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
strict-peer-dependencies=false
2+
auto-install-peers=true

.releaserc.yml

-18
This file was deleted.

.vscode/extensions.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,8 @@
1212
"firsttris.vscode-jest-runner",
1313
"stylelint.vscode-stylelint",
1414
"Vue.volar",
15-
"Vue.vscode-typescript-vue-plugin"
15+
"Vue.vscode-typescript-vue-plugin",
16+
"arcanis.vscode-zipfs"
1617
],
1718
"unwantedRecommendations": [
1819
"octref.vetur",

.vscode/settings.json

+27-7
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,34 @@
33
"editor.guides.bracketPairs": true,
44
"editor.formatOnSave": true,
55
"editor.defaultFormatter": "esbenp.prettier-vscode",
6-
"editor.codeActionsOnSave": ["source.fixAll.eslint"],
7-
"eslint.validate": ["javascript", "javascriptreact", "typescript", "vue"],
8-
"typescript.tsdk": "node_modules/typescript/lib",
6+
"editor.codeActionsOnSave": [
7+
"source.fixAll.eslint"
8+
],
9+
"eslint.validate": [
10+
"javascript",
11+
"javascriptreact",
12+
"typescript",
13+
"vue"
14+
],
15+
"typescript.tsdk": ".yarn/sdks/typescript/lib",
916
"git.alwaysSignOff": true,
1017
"github.gitAuthentication": true,
11-
"conventionalCommits.scopes": ["web"],
18+
"conventionalCommits.scopes": [
19+
"web"
20+
],
1221
"eslint.workingDirectories": [
13-
{ "directory": "./api", "changeProcessCWD": true },
14-
{ "directory": "./web", "changeProcessCWD": true }
15-
]
22+
{
23+
"directory": "./api",
24+
"changeProcessCWD": true
25+
},
26+
{
27+
"directory": "./web",
28+
"changeProcessCWD": true
29+
}
30+
],
31+
"search.exclude": {
32+
"**/.yarn": true,
33+
"**/.pnp.*": true
34+
},
35+
"typescript.enablePromptUseWorkspaceTsdk": true
1636
}

.yarn/releases/yarn-3.5.0.cjs

+873
Large diffs are not rendered by default.

.yarnrc.yml

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
yarnPath: .yarn/releases/yarn-3.5.0.cjs
2+
nodeLinker: pnp

CHANGELOG.md

+11-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,17 @@
11
# Domicile Changelog
22

3-
## [1.1.1](https://github.com/domicileapp/domicile/compare/v1.1.0...v1.1.1) (2023-04-13)
3+
## [1.1.1-dev.2](https://github.com/domicileapp/domicile/compare/v1.1.1-dev.1...v1.1.1-dev.2) (2023-04-14)
4+
5+
6+
### Bug Fixes
47

8+
* releases ([c8fc963](https://github.com/domicileapp/domicile/commit/c8fc96372ad6d53ed672b015149a5c84a46257d7))
9+
* tsconfig file in contracts module ([64aaf72](https://github.com/domicileapp/domicile/commit/64aaf72ce78ce3864f63d89fd8e147d0120ae732))
10+
* workspace ([1c30790](https://github.com/domicileapp/domicile/commit/1c30790cae27d962ce4b8e5a69e05fbb9a2e9b52))
11+
12+
## [1.1.1-dev.1](https://github.com/domicileapp/domicile/compare/v1.1.0...v1.1.1-dev.1) (2023-04-13)
13+
14+
## [1.1.1](https://github.com/domicileapp/domicile/compare/v1.1.0...v1.1.1) (2023-04-13)
515

616
### Bug Fixes
717

api/.env

-8
This file was deleted.

api/temp/BaseEntity.js.json

-1
This file was deleted.

api/temp/BaseEntity.ts.json

-1
This file was deleted.

api/temp/Chore.js.json

-1
This file was deleted.

api/temp/Chore.ts.json

-1
This file was deleted.

api/temp/Cookbook.js.json

-1
This file was deleted.

api/temp/Cookbook.ts.json

-1
This file was deleted.

api/temp/List.js.json

-1
This file was deleted.

api/temp/List.ts.json

-1
This file was deleted.

api/temp/MealPlanner.js.json

-1
This file was deleted.

api/temp/MealPlanner.ts.json

-1
This file was deleted.

api/temp/Recipe.js.json

-1
This file was deleted.

api/temp/Recipe.ts.json

-1
This file was deleted.

api/temp/RecipeCategory.js.json

-1
This file was deleted.

api/temp/RecipeCategory.ts.json

-1
This file was deleted.

0 commit comments

Comments
 (0)