Skip to content

Commit

Permalink
Upgrade to 0.7.0 (#19)
Browse files Browse the repository at this point in the history
* upgrade to 0.7.0

* Chowworks 0 7 0 upgrade (#18)

* Changed Resumeskillset be documents vs objects for full text search of skill

* control over which documents can be searched by a page.

* fix image too small oon bio and search bug fixes

* Fix business card fab from preventing click on entire bottom of screen

* add options to bio to turn off ui elements for display in search results.

* pricing and storybook build and deploy; cleanup for cta headline section

* security fix from google

* Update .gitignore

* download now creates pdf on fly from website components

added raleway font for pdf

* simplify parameters resumeBio

* download resume button is now straight download of pdf

* added download pdf in email block
  • Loading branch information
tmanundercover committed Dec 19, 2023
1 parent ea131e0 commit 3d92c06
Show file tree
Hide file tree
Showing 151 changed files with 3,390 additions and 1,344 deletions.
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -31,4 +31,6 @@ yarn-error.log*
yarn*
yarn.*

*.log
*.log
build
storybook-static
2 changes: 2 additions & 0 deletions .idea/modules.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 8 additions & 0 deletions functions.iml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<module type="WEB_MODULE" version="4">
<component name="NewModuleRootManager" inherit-compiler-output="true">
<exclude-output />
<content url="file://$MODULE_DIR$/functions" />
<orderEntry type="sourceFolder" forTests="false" />
</component>
</module>
7 changes: 3 additions & 4 deletions functions/package.json
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
{
"name": "functions",
"version": "0.6.0",
"version": "0.7.0",
"scripts": {
"lint": "eslint --ext .js,.ts .",
"build": "tsc",
"build:dev": "NODE_ENV=development tsc",
"serve": "npm run build && firebase emulators:start --only functions",
"shell": "npm run build && firebase functions:shell",
"start": "npm run shell",
"deploy": "npm run build && firebase deploy",
"deploy": "npm run build && npm run html && firebase deploy",
"logs": "firebase functions:log",
"html": "cp ../build/index.html ./lib",
"fonts": "mv ../build/fonts ./lib/functions/src"
"cp-storybook": "cp -Rf ../storybook-static ../build/sb"
},
"engines": {
"node": "14"
Expand All @@ -22,7 +22,6 @@
"@sanity/image-url": "^1.0.2",
"@sanity/types": "^2.34.0",
"@sendgrid/mail": "^7.7.0",
"@shopify/shopify-api": "^8.0.2",
"axios": "^1.6.2",
"dotenv": "^16.3.1",
"es6-promise": "^4.2.8",
Expand Down
7 changes: 3 additions & 4 deletions functions/src/groqQueries.ts
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@ const SERVICE =


const HOMEPAGE = `_type,
_id,
title,
isUnderConstruction,
releaseDate,
Expand Down Expand Up @@ -128,12 +129,10 @@ const HOMEPAGE = `_type,
},
"serviceAmenities": serviceAmenities[]->,
"prosList": prosList[]->,
"skillsets": skillsets[]{
"skillsets": skillsets[]->{
...,
"skills": skills[]->{
_id,
name,
title,
...
},
},
"experiences": experiences[]->{
Expand Down
Loading

0 comments on commit 3d92c06

Please sign in to comment.