Skip to content
This repository was archived by the owner on Apr 9, 2025. It is now read-only.

Commit 10931e3

Browse files
committed
fix: compiled for sanity 3.0.0-rc.0
Upgraded with "npx @sanity/plugin-kit inject --preset semver-workflow --preset renovatebot"
1 parent 60e3c2f commit 10931e3

File tree

14 files changed

+9323
-7158
lines changed

14 files changed

+9323
-7158
lines changed

.editorconfig

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
; editorconfig.org
2+
root = true
3+
charset= utf8
4+
5+
[*]
6+
end_of_line = lf
7+
insert_final_newline = true
8+
trim_trailing_whitespace = true
9+
indent_style = space
10+
indent_size = 2
11+
12+
[*.md]
13+
trim_trailing_whitespace = false

.eslintignore

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,5 @@
22
commitlint.config.js
33
lib
44
lint-staged.config.js
5-
*.md
6-
*.yaml
7-
*.js
5+
package.config.ts
6+
*.js

.gitignore

Lines changed: 59 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,61 @@
1-
.DS_Store
2-
lib
1+
# Logs
2+
logs
3+
*.log
4+
npm-debug.log*
5+
6+
# Runtime data
7+
pids
8+
*.pid
9+
*.seed
10+
11+
# Directory for instrumented libs generated by jscoverage/JSCover
12+
lib-cov
13+
14+
# Coverage directory used by tools like istanbul
15+
coverage
16+
17+
# nyc test coverage
18+
.nyc_output
19+
20+
# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
21+
.grunt
22+
23+
# node-waf configuration
24+
.lock-wscript
25+
26+
# Compiled binary addons (http://nodejs.org/api/addons.html)
27+
build/Release
28+
29+
# Dependency directories
330
node_modules
4-
example/node_modules
5-
.idea/
6-
yalc.lock
7-
yarn.lock
31+
jspm_packages
32+
33+
# Optional npm cache directory
34+
.npm
35+
36+
# Optional REPL history
37+
.node_repl_history
38+
39+
# macOS finder cache file
40+
.DS_Store
41+
42+
# VS Code settings
43+
.vscode
44+
45+
# IntelliJ
46+
.idea
47+
*.iml
48+
49+
# Cache
50+
.cache
51+
52+
# Yalc
853
.yalc
9-
.parcel-cache
54+
yalc.lock
55+
56+
##npm package zips
57+
*.tgz
58+
59+
# Compiled plugin
60+
lib
61+

.npmignore

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
1-
.DS_Store
2-
/src
3-
/example
4-
/node_modules
1+
/test
2+
/coverage
3+
.editorconfig
4+
.eslintrc
5+
.gitignore
6+
.github
7+
.prettierrc
8+
.travis.yml
9+
.nyc_output

.npmrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
legacy-peer-deps=true
1+
legacy-peer-deps=true

.prettierrc

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

.prettierrc.js

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
module.exports = {
2+
semi: false,
3+
printWidth: 100,
4+
bracketSpacing: false,
5+
singleQuote: true,
6+
useTabs: false,
7+
endOfLine: 'lf',
8+
}

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2022 - 2022 Sanity.io
3+
Copyright (c) 2022 Sanity
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

0 commit comments

Comments
 (0)