Skip to content

Commit c6019b6

Browse files
committed
Low risk cleanups
1 parent 2db467a commit c6019b6

File tree

11 files changed

+17
-33
lines changed

11 files changed

+17
-33
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@ node_modules
1414
**/shopify.extension.toml
1515
*/javascript/**/package.json
1616
*/javascript/**/src/*
17+
*/typescript/**/package.json
18+
*/typescript/**/src/*
1719
*/rust/**/src/*.graphql
1820
*/wasm/**/*.graphql
1921
!*/wasm/**/schema.graphql

checkout/rust/cart-checkout-validation/default/shopify.extension.toml.liquid

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,5 +15,5 @@ description = "t:description"
1515
[extensions.build]
1616
command = "cargo build --target=wasm32-wasip1 --release"
1717
path = "target/wasm32-wasip1/release/{{handle | replace: " ", "-" | downcase}}.wasm"
18-
watch = [ "src/**/*.rs" ]
18+
watch = ["src/**/*.rs"]
1919

discounts/javascript/discounts-allocator/default/package.json.liquid

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,6 @@
2828
"vitest": "^0.29.8"
2929
},
3030
"dependencies": {
31-
"@shopify/shopify_function": "0.1.0",
32-
"decimal.js": "^10.4.3",
33-
"javy": "0.1.1"
31+
"decimal.js": "^10.4.3"
3432
}
3533
}

discounts/rust/discounts/default/schema.graphql

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,3 @@
1-
# This file is auto-generated from the current state of the GraphQL API. Instead of editing this file,
2-
# please edit the ruby definition files and run `bin/rails graphql:schema:dump` to regenerate the schema.
3-
#
4-
# If you're just looking to browse, you may find it friendlier to use the graphiql browser which is
5-
# available in services-internal at https://app.shopify.com/services/internal/shops/14168/graphql.
6-
# Check out the "Docs" tab in the top right.
7-
81
schema {
92
query: Input
103
mutation: MutationRoot

discounts/wasm/discounts-allocator/default/shopify.extension.toml.liquid

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,9 @@ description = "t:description"
1313
export = "run"
1414

1515
[extensions.build]
16-
command = ""
17-
path = "dist/function.wasm"
16+
command = "echo 'build the wasm'"
17+
path = ""
18+
watch = []
1819

1920
[extensions.ui.paths]
2021
create = "/"
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
query Input {
2+
shop {
3+
metafield(namespace: "$app:{{handle | replace: " ", "-" | downcase}}", key: "function-configuration") {
4+
value
5+
}
6+
}
7+
}
Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,2 @@
11
dist
2-
generated
3-
node_modules
4-
5-
!/src/*.js
6-
!/src/*.graphql
2+
generated

order-routing/javascript/pickup-point-delivery-option-generators/default/package.json.liquid

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,5 @@
2626
},
2727
"devDependencies": {
2828
"vitest": "^0.29.8"
29-
},
30-
"dependencies": {
31-
"@shopify/shopify_function": "0.1.0",
32-
"javy": "0.1.1"
3329
}
3430
}
Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,2 @@
11
/target
2-
Cargo.lock
3-
.idea
4-
5-
!/src/*.graphql
2+
Cargo.lock
Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,2 @@
11
dist
2-
generated
3-
node_modules
4-
package.json
2+
generated

0 commit comments

Comments
 (0)