@edgedev/firebase 1.8.4 → 1.8.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/edgeFirebase.ts CHANGED
@@ -399,7 +399,7 @@ export const EdgeFirebase = class {
399
399
  return;
400
400
  }
401
401
  console.log(result.user.uid);
402
- const userRef = doc(this.db, "staged-users", result.user.uid);
402
+ const userRef = doc(this.db, "users", result.user.uid);
403
403
  const userSnap = await getDoc(userRef);
404
404
  if (!userSnap.exists()) {
405
405
  this.user.logInError = true;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@edgedev/firebase",
3
- "version": "1.8.4",
3
+ "version": "1.8.6",
4
4
  "description": "Vue 3 / Nuxt 3 Plugin or Nuxt 3 plugin for firebase authentication and firestore.",
5
5
  "main": "index.ts",
6
6
  "scripts": {
@@ -1,20 +1,26 @@
1
1
  #!/bin/bash
2
2
 
3
+ # Resolve the symlink and get the actual directory path
4
+ actual_dir=$(readlink -f $(dirname $0))
5
+ # Get the project root directory by removing the node_modules directory path
6
+ project_root=$(echo "$actual_dir" | awk '{gsub(/node_modules.*$/, ""); print}')
7
+
8
+
3
9
  # Check if the destination file exists
4
- if [ ! -f "$INIT_CWD./firestore.rules" ]; then
10
+ if [ ! -f "$project_root/firestore.rules" ]; then
5
11
  # If the file does not exist, create it and add the rules_version line
6
- echo "rules_version = '2';" > "$INIT_CWD./firestore.rules";
12
+ echo "rules_version = '2';" > "$project_root/firestore.rules";
7
13
  fi
8
14
 
9
- [ "$(tail -c1 ./firestore.rules)" != "" ] && echo "" >> ./firestore.rules
15
+ [ "$(tail -c1 $project_root/firestore.rules)" != "" ] && echo "" >> "$project_root/firestore.rules"
10
16
 
11
- # Extract the code block from the source file and append it to the destination file
12
- sed -i.backup '/\/\/ #EDGE FIREBASE RULES START/,/\/\/ #EDGE FIREBASE RULES END/d' ./firestore.rules
17
+ # # Extract the code block from the source file and append it to the destination file
18
+ sed -i.backup '/\/\/ #EDGE FIREBASE RULES START/,/\/\/ #EDGE FIREBASE RULES END/d' "$project_root/firestore.rules"
13
19
 
14
20
  awk '/\/\/ #EDGE FIREBASE RULES START/,/\/\/ #EDGE FIREBASE RULES END/' ./src/firestore.rules | \
15
21
  sed '1d;$d' | \
16
22
  sed -e '1s/^/\/\/ #EDGE FIREBASE RULES START\n/' -e '$s/$/\n\/\/ #EDGE FIREBASE RULES END/' \
17
- >> ./firestore.rules;
23
+ >> "$project_root/firestore.rules";
18
24
 
19
25
  if [ ! -f ./functions/index.js ]; then
20
26
  mkdir -p ./functions
@@ -24,11 +30,11 @@ if [ ! -f ./functions/index.js ]; then
24
30
  echo "const db = admin.firestore();" >> ./functions/index.js;
25
31
  fi
26
32
 
27
- [ "$(tail -c1 ./firestore.rules)" != "" ] && echo "" >> ./functions/index.js
33
+ [ "$(tail -c1 $project_root/functions/index.js)" != "" ] && echo "" >> "$project_root/functions/index.js"
28
34
 
29
- sed -i.backup '/\/\/ START @edge\/firebase functions/,/\/\/ END @edge\/firebase functions/d' ./functions/index.js
35
+ sed -i.backup '/\/\/ START @edge\/firebase functions/,/\/\/ END @edge\/firebase functions/d' "$project_root/functions/index.js"
30
36
 
31
37
  awk '/\/\/ START @edge\/firebase functions/,/\/\/ END @edge\/firebase functions/' ./src/functions.js | \
32
38
  sed '1d;$d' | \
33
39
  sed -e '1s/^/\/\/ START @edge\/firebase functions\n/' -e '$s/$/\n\/\/ END @edge\/firebase functions/' \
34
- >> ./functions/index.js;
40
+ >> "$project_root/functions/index.js";