Skip to content

Commit

Permalink
Merge pull request #30
Browse files Browse the repository at this point in the history
add-extras
  • Loading branch information
pavanpodila authored Oct 25, 2024
2 parents aadf3a8 + 8c12427 commit 69dacd8
Show file tree
Hide file tree
Showing 503 changed files with 100,999 additions and 553 deletions.
8 changes: 8 additions & 0 deletions .changeset/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# Changesets

Hello and welcome! This folder has been automatically generated by `@changesets/cli`, a build tool that works
with multi-package repos, or single-package repos to help you version and publish your code. You can
find the full documentation for it [in our repository](https://github.com/changesets/changesets)

We have a quick list of common questions to get you started engaging with this project in
[our documentation](https://github.com/changesets/changesets/blob/main/docs/common-questions.md)
11 changes: 11 additions & 0 deletions .changeset/config.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"$schema": "https://unpkg.com/@changesets/config@3.0.0/schema.json",
"changelog": "@changesets/cli/changelog",
"commit": false,
"fixed": [["@vyuh/*"]],
"linked": [],
"access": "public",
"baseBranch": "main",
"updateInternalDependencies": "patch",
"ignore": []
}
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ dist
.DS_Store
.idea
coverage
.metadata
.dart_tool
pubspec_overrides.yaml
.flutter-plugins
Expand Down
5 changes: 0 additions & 5 deletions analysis_options.yaml
Original file line number Diff line number Diff line change
@@ -1,10 +1,5 @@
include: package:flutter_lints/flutter.yaml

analyzer:
exclude:
- bricks/*/__brick__/**


# Additional information about this file can be found at
# https://dart.dev/guides/language/analysis-options
linter:
Expand Down
3 changes: 3 additions & 0 deletions apps/demo-studio/.eslintrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"extends": "@sanity/eslint-config-studio"
}
29 changes: 29 additions & 0 deletions apps/demo-studio/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.

# Dependencies
/node_modules
/.pnp
.pnp.js

# Compiled Sanity Studio
/dist

# Temporary Sanity runtime, generated by the CLI on every dev server start
/.sanity

# Logs
/logs
*.log

# Coverage directory used by testing tools
/coverage

# Misc
.DS_Store
*.pem

# Typescript
*.tsbuildinfo

# Dotenv and similar local-only files
*.local
9 changes: 9 additions & 0 deletions apps/demo-studio/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# Sanity Clean Content Studio

Congratulations, you have now installed the Sanity Content Studio, an open source real-time content editing environment connected to the Sanity backend.

Now you can do the following things:

- [Read “getting started” in the docs](https://www.sanity.io/docs/introduction/getting-started?utm_source=readme)
- [Join the community Slack](https://slack.sanity.io/?utm_source=readme)
- [Extend and build plugins](https://www.sanity.io/docs/content-studio/extending?utm_source=readme)
47 changes: 47 additions & 0 deletions apps/demo-studio/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
{
"name": "demo-studio",
"private": true,
"version": "1.0.0",
"main": "package.json",
"license": "UNLICENSED",
"scripts": {
"dev": "sanity dev",
"start": "sanity start",
"build": "sanity build",
"deploy": "sanity deploy",
"deploy-graphql": "sanity graphql deploy",
"edit": "node scripts/edit-document.js"
},
"keywords": [
"sanity"
],
"dependencies": {
"@vyuh/sanity-plugin-structure": "^1.25.0",
"@vyuh/sanity-schema-auth": "^1.25.0",
"@vyuh/sanity-schema-core": "^1.25.0",
"@vyuh/sanity-schema-onboarding": "^1.25.0",
"@vyuh/sanity-schema-system": "^1.25.0",
"food-sanity-schema": "workspace:*",
"misc-sanity-schema": "workspace:*",
"puzzles-sanity-schema": "workspace:*",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"sanity": "^3.62.2",
"settings-sanity-schema": "workspace:*",
"styled-components": "^6.1.13",
"tmdb-sanity-schema": "workspace:*",
"wonderous-sanity-schema": "workspace:*"
},
"devDependencies": {
"@sanity/eslint-config-studio": "^4.0.0",
"@types/react": "^18.3.12",
"eslint": "^8.57.1",
"typescript": "^5.6.3"
},
"prettier": {
"semi": false,
"printWidth": 100,
"bracketSpacing": false,
"singleQuote": true
}
}
Loading

0 comments on commit 69dacd8

Please sign in to comment.