Skip to content

Commit edfcd1b

Browse files
authored
chore: rename (#1)
* chore: rename * fix: test * chore: metadata validation
1 parent 7202678 commit edfcd1b

138 files changed

Lines changed: 192 additions & 192 deletions

File tree

Some content is hidden

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

.github/workflows/docker-release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77
workflow_dispatch:
88
inputs:
99
release:
10-
description: 'ex: @sushi-atrium/web-app-v1.0.0'
10+
description: 'ex: @roll-stack/web-app-v1.0.0'
1111
type: string
1212
required: true
1313
ref:
@@ -28,7 +28,7 @@ jobs:
2828
id: regex-match
2929
with:
3030
text: ${{ github.event.inputs.release || github.ref_name }}
31-
regex: '@sushi-atrium\/([a-z-]+)-(v[0-9]+.[0-9]+.[0-9]+)'
31+
regex: '@roll-stack\/([a-z-]+)-(v[0-9]+.[0-9]+.[0-9]+)'
3232

3333
- name: Set package in env
3434
id: set-package

.vscode/settings.json

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,5 +65,9 @@
6565
},
6666
"tailwindCSS.experimental.classRegex": [
6767
["ui:\\s*{([^)]*)\\s*}", "(?:'|\"|`)([^']*)(?:'|\"|`)"]
68-
]
68+
],
69+
"sonarlint.connectedMode.project": {
70+
"connectionId": "sushi-love",
71+
"projectKey": "sushi-love_roll-stack"
72+
}
6973
}

apps/geo-vault/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "@sushi-atrium/geo-vault",
2+
"name": "@roll-stack/geo-vault",
33
"type": "module",
44
"version": "0.0.0",
55
"private": true,
@@ -13,7 +13,7 @@
1313
"postinstall": "nuxt prepare"
1414
},
1515
"dependencies": {
16-
"@sushi-atrium/geo-database": "workspace:*",
16+
"@roll-stack/geo-database": "workspace:*",
1717
"arktype": "catalog:",
1818
"aws4fetch": "catalog:",
1919
"date-fns": "catalog:",

apps/geo-vault/server/api/address/index.post.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { createId } from '@paralleldrive/cuid2'
2-
import { repository } from '@sushi-atrium/geo-database'
2+
import { repository } from '@roll-stack/geo-database'
33

44
type Address = {
55
id: string

apps/geo-vault/server/api/geo/house-parents.get.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { resolve } from 'node:path'
2-
import { repository } from '@sushi-atrium/geo-database'
2+
import { repository } from '@roll-stack/geo-database'
33
import { GarXmlZip } from 'ru-nalog-fias-gar'
44

55
const objects = {

apps/geo-vault/server/api/geo/houses.get.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { resolve } from 'node:path'
2-
import { repository } from '@sushi-atrium/geo-database'
2+
import { repository } from '@roll-stack/geo-database'
33
import { GarXmlZip } from 'ru-nalog-fias-gar'
44

55
const objects = {

apps/geo-vault/server/api/geo/object-parents.get.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { resolve } from 'node:path'
2-
import { repository } from '@sushi-atrium/geo-database'
2+
import { repository } from '@roll-stack/geo-database'
33
import { GarXmlZip } from 'ru-nalog-fias-gar'
44

55
const objects = {

apps/geo-vault/server/api/geo/objects.get.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { resolve } from 'node:path'
2-
import { repository } from '@sushi-atrium/geo-database'
2+
import { repository } from '@roll-stack/geo-database'
33
import { GarXmlZip } from 'ru-nalog-fias-gar'
44

55
const objects = {

apps/geo-vault/server/plugins/01.database.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import process from 'node:process'
2-
import { useCreateDatabase } from '@sushi-atrium/geo-database'
2+
import { useCreateDatabase } from '@roll-stack/geo-database'
33

44
/**
55
* DB init

apps/web-app/app/components/CheckoutItem.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
</template>
2828

2929
<script setup lang="ts">
30-
import type { CheckoutItem, Product, ProductVariant } from '@sushi-atrium/database'
30+
import type { CheckoutItem, Product, ProductVariant } from '@roll-stack/database'
3131
3232
const { item } = defineProps<{
3333
item: CheckoutItem & {

0 commit comments

Comments
 (0)