Skip to content

Commit 0ac0d5d

Browse files
committed
clean all
1 parent 155c13c commit 0ac0d5d

File tree

107 files changed

+79
-800
lines changed

Some content is hidden

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

107 files changed

+79
-800
lines changed

.editorconfig

-8
This file was deleted.
File renamed without changes.
File renamed without changes.

.gitignore

+71-4
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,75 @@
1+
# Logs
2+
logs
3+
*.log
4+
npm-debug.log*
5+
yarn-debug.log*
6+
yarn-error.log*
7+
8+
# Runtime data
9+
pids
10+
*.pid
11+
*.seed
12+
*.pid.lock
13+
14+
# Directory for instrumented libs generated by jscoverage/JSCover
15+
lib-cov
16+
17+
# Coverage directory used by tools like istanbul
18+
coverage
19+
20+
# nyc test coverage
21+
.nyc_output
22+
23+
# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
24+
.grunt
25+
26+
# Bower dependency directory (https://bower.io/)
27+
bower_components
28+
29+
# node-waf configuration
30+
.lock-wscript
31+
32+
# Compiled binary addons (http://nodejs.org/api/addons.html)
33+
build/Release
34+
35+
# Dependency directories
36+
node_modules/
37+
jspm_packages/
38+
39+
# Typescript v1 declaration files
40+
typings/
41+
42+
# Optional npm cache directory
43+
.npm
44+
45+
# Optional eslint cache
46+
.eslintcache
47+
48+
# Optional REPL history
49+
.node_repl_history
50+
51+
# Output of 'npm pack'
52+
*.tgz
53+
54+
# gatsby files
55+
.cache/
56+
public
57+
158
# Mac files
259
.DS_Store
360

4-
# Dependency directories
5-
/node_modules
61+
# Yarn
62+
yarn-error.log
63+
yarn.lock
64+
.pnp/
65+
.pnp.js
66+
67+
# Yarn Integrity file
68+
.yarn-integrity
69+
70+
# Lock files
71+
/package-lock.json
72+
/yarn.lock
673

7-
# lerna files
8-
/lerna-debug.log
74+
# Secrets
75+
.env.development

web/.prettierrc .prettierrc

File renamed without changes.

README.md

+8-2
File renamed without changes.

web/gatsby-node.js gatsby-node.js

File renamed without changes.

web/package.json package.json

-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
"private": true,
33
"name": "queerjs-web",
44
"version": "1.0.0",
5-
"author": "Sanity <[email protected]>",
65
"scripts": {
76
"build": "gatsby build",
87
"clean-cache": "gatsby clean",
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

web/src/components/Info/index.js src/components/Info/index.js

-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,6 @@ export default ({ site, city }) => {
2929
return
3030
}
3131
console.log(`Human was created, document ID is ${record.getId()}`)
32-
console.log(record.getId())
3332
})
3433
}
3534
}
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

web/src/data/sf.js src/data/sf.js

File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

web/src/pages/_main.js src/pages/_main.js

-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,6 @@ const Main = ({ city, attendees }) => {
3636
<Speakers noSpeak cfp={site.cfp} speakers={speakers.filter(s => s.mc)} />
3737
</Panel>
3838
) : null}
39-
{console.log(attendees)}
4039
<Panel heading={`Attendees (${attendees.length})`}>
4140
<Attendees attendees={attendees} />
4241
</Panel>
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

studio/.eslintrc.js

-16
This file was deleted.

studio/.gitignore

-2
This file was deleted.

studio/.prettierrc

-5
This file was deleted.

studio/README.md

-1
This file was deleted.

studio/config/.checksums

-6
This file was deleted.

studio/config/@sanity/data-aspects.json

-3
This file was deleted.

studio/config/@sanity/default-layout.json

-6
This file was deleted.

studio/config/@sanity/default-login.json

-7
This file was deleted.

studio/dashboardConfig.js

-44
This file was deleted.

studio/deskStructure.js

-34
This file was deleted.

studio/netlify.toml

-4
This file was deleted.

studio/package.json

-44
This file was deleted.

studio/plugins/dashboard-widget-structure-menu/sanity.json

-13
This file was deleted.

studio/plugins/dashboard-widget-structure-menu/src/components/StructureMenuWidget.css

-40
This file was deleted.

0 commit comments

Comments
 (0)