Skip to content

Commit c7b006a

Browse files
committed
fix: update-lit command to not make script executable each time
1 parent a1ae43a commit c7b006a

File tree

35 files changed

+1176
-1203
lines changed

35 files changed

+1176
-1203
lines changed

conditional-signing/browser/project.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"update-lit": {
66
"executor": "nx:run-commands",
77
"options": {
8-
"command": "cd conditional-signing/browser && chmod +x ../../scripts/update-lit.sh && ../../scripts/update-lit.sh"
8+
"command": "cd conditional-signing/browser && ../../scripts/update-lit.sh"
99
}
1010
}
1111
}

conditional-signing/nodejs/project.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"update-lit": {
66
"executor": "nx:run-commands",
77
"options": {
8-
"command": "cd conditional-signing/nodejs && chmod +x ../../scripts/update-lit.sh && ../../scripts/update-lit.sh"
8+
"command": "cd conditional-signing/nodejs && ../../scripts/update-lit.sh"
99
}
1010
}
1111
}

custom-auth/browser/project.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"update-lit": {
66
"executor": "nx:run-commands",
77
"options": {
8-
"command": "cd custom-auth/browser && chmod +x ../../scripts/update-lit.sh && ../../scripts/update-lit.sh"
8+
"command": "cd custom-auth/browser && ../../scripts/update-lit.sh"
99
}
1010
}
1111
}

decrypt-api-key-in-action/nodejs/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@
55
"type": "module",
66
"license": "MIT",
77
"dependencies": {
8-
"@lit-protocol/lit-node-client": "^6.2.2",
9-
"@lit-protocol/lit-auth-client": "^6.2.2",
10-
"@lit-protocol/auth-helpers":"^6.2.2",
11-
"@lit-protocol/types": "^6.2.2",
8+
"@lit-protocol/auth-helpers": "^6.4.10",
9+
"@lit-protocol/lit-auth-client": "^6.4.10",
10+
"@lit-protocol/lit-node-client": "^6.4.10",
11+
"@lit-protocol/types": "^6.4.10",
1212
"@types/node": "^20.12.8",
1313
"ethers": "^5.7.1",
1414
"siwe": "^2.0.0",

decrypt-api-key-in-action/nodejs/project.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"update-lit": {
66
"executor": "nx:run-commands",
77
"options": {
8-
"command": "cd decrypt-api-key-in-action/nodejs && chmod +x ../../scripts/update-lit.sh && ../../scripts/update-lit.sh"
8+
"command": "cd decrypt-api-key-in-action/nodejs && ../../scripts/update-lit.sh"
99
}
1010
}
1111
}

eip-191-signing/browser/project.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"update-lit": {
66
"executor": "nx:run-commands",
77
"options": {
8-
"command": "cd eip-191-signing/browser && chmod +x ../../scripts/update-lit.sh && ../../scripts/update-lit.sh"
8+
"command": "cd eip-191-signing/browser && ../../scripts/update-lit.sh"
99
}
1010
}
1111
}

eip-191-signing/nodejs/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@
1010
},
1111
"dependencies": {
1212
"@dotenvx/dotenvx": "^0.37.1",
13-
"@lit-protocol/auth-helpers": "^6.2.2",
14-
"@lit-protocol/constants": "^6.2.2",
15-
"@lit-protocol/contracts-sdk": "^6.2.2",
16-
"@lit-protocol/lit-node-client-nodejs": "^6.2.2",
13+
"@lit-protocol/auth-helpers": "^6.4.10",
14+
"@lit-protocol/constants": "^6.4.10",
15+
"@lit-protocol/contracts-sdk": "^6.4.10",
16+
"@lit-protocol/lit-node-client-nodejs": "^6.4.10",
1717
"ethers": "5.7.2"
1818
},
1919
"devDependencies": {

eip-191-signing/nodejs/project.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"update-lit": {
66
"executor": "nx:run-commands",
77
"options": {
8-
"command": "cd eip-191-signing/nodejs && chmod +x ../../scripts/update-lit.sh && ../../scripts/update-lit.sh"
8+
"command": "cd eip-191-signing/nodejs && ../../scripts/update-lit.sh"
99
}
1010
}
1111
}

lit-action-using-fetch/browser/package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@
99
},
1010
"dependencies": {
1111
"@dotenvx/dotenvx": "^0.37.1",
12-
"@lit-protocol/auth-browser": "^6.2.2",
13-
"@lit-protocol/auth-helpers": "^6.2.2",
14-
"@lit-protocol/constants": "^6.2.2",
15-
"@lit-protocol/contracts-sdk": "^6.2.2",
16-
"@lit-protocol/lit-node-client": "^6.2.2",
12+
"@lit-protocol/auth-browser": "^6.4.10",
13+
"@lit-protocol/auth-helpers": "^6.4.10",
14+
"@lit-protocol/constants": "^6.4.10",
15+
"@lit-protocol/contracts-sdk": "^6.4.10",
16+
"@lit-protocol/lit-node-client": "^6.4.10",
1717
"ethers": "5.7.2"
1818
},
1919
"devDependencies": {

lit-action-using-fetch/browser/project.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"update-lit": {
66
"executor": "nx:run-commands",
77
"options": {
8-
"command": "cd lit-action-using-fetch/nodejs && chmod +x ../../scripts/update-lit.sh && ../../scripts/update-lit.sh"
8+
"command": "cd lit-action-using-fetch/browser && ../../scripts/update-lit.sh"
99
}
1010
}
1111
}

0 commit comments

Comments
 (0)