Skip to content

Commit 23e2dc0

Browse files
committed
Merge branch 'master' into alpha
2 parents bdb2e78 + 7fc13df commit 23e2dc0

File tree

145 files changed

+784
-705
lines changed

Some content is hidden

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

145 files changed

+784
-705
lines changed

.github/workflows/e2e.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,10 @@ jobs:
1010
run_e2e:
1111
name: Run e2e
1212
runs-on: ubuntu-latest
13+
env:
14+
NX_BRANCH: ${{ github.event.number }}
15+
NX_RUN_GROUP: ${{ github.run_id }}
16+
NX_CLOUD_AUTH_TOKEN: ${{ secrets.NX_CLOUD_AUTH_TOKEN }}
1317
strategy:
1418
matrix:
1519
node-version: [12.x, 14.x]

nx.json

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,12 @@
1616
},
1717
"tasksRunnerOptions": {
1818
"default": {
19-
"runner": "@nrwl/workspace/tasks-runners/default",
19+
"runner": "@nrwl/nx-cloud",
2020
"options": {
21-
"cacheableOperations": ["build", "lint", "test", "e2e"]
21+
"cacheableOperations": ["build", "lint", "test", "e2e"],
22+
"accessToken": "ZTc0ZDBjM2YtNWVkZS00ZTMwLWFhZWQtM2RiZGFlMzlmNjM0fHJlYWQ=",
23+
"canTrackAnalytics": true,
24+
"showUsageWarnings": true
2225
}
2326
}
2427
},

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,6 @@
3232
},
3333
"private": true,
3434
"dependencies": {
35-
"@angular-devkit/architect": "~0.1100.1",
36-
"@angular-devkit/build-webpack": "~0.1100.1",
3735
"@nrwl/devkit": "11.4.0",
3836
"@nrwl/workspace": "11.4.0",
3937
"@shopify/themekit": "^1.1.7",
@@ -61,6 +59,7 @@
6159
"portscanner": "^2.2.0",
6260
"postcss": "^8.2.1",
6361
"postcss-loader": "^4.1.0",
62+
"rxjs-for-await": "^0.0.2",
6463
"sass": "^1.27.0",
6564
"sass-loader": "^10.0.3",
6665
"tapable": "^2.0.0",
@@ -78,6 +77,7 @@
7877
"@nrwl/cli": "11.4.0",
7978
"@nrwl/eslint-plugin-nx": "11.4.0",
8079
"@nrwl/jest": "11.4.0",
80+
"@nrwl/nx-cloud": "^11.1.4",
8181
"@nrwl/nx-plugin": "11.4.0",
8282
"@nrwl/tao": "11.4.0",
8383
"@semantic-release/changelog": "^5.0.1",

packages/nx-shopify/builders.json

Lines changed: 0 additions & 20 deletions
This file was deleted.

packages/nx-shopify/collection.json

Lines changed: 0 additions & 17 deletions
This file was deleted.

packages/nx-shopify/executors.json

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
11
{
2-
"$schema": "../../node_modules/@angular-devkit/architect/src/builders-schema.json",
2+
"$schema": "http://json-schema.org/schema",
33
"executors": {
44
"build": {
5-
"implementation": "./src/builders/build/builder",
6-
"schema": "./src/builders/build/schema.json",
5+
"implementation": "./src/executors/build/build.executor",
6+
"schema": "./src/executors/build/schema.json",
77
"description": "Build a Shopify theme"
88
},
9-
"deploy": {
10-
"implementation": "./src/builders/deploy/builder",
11-
"schema": "./src/builders/deploy/schema.json",
12-
"description": "Deploy a Shopify theme to Shopify"
13-
},
149
"serve": {
1510
"implementation": "./src/executors/serve/serve.executor",
1611
"schema": "./src/executors/serve/schema.json",
1712
"description": "Serves a Shopify theme for local development"
13+
},
14+
"deploy": {
15+
"implementation": "./src/executors/deploy/deploy.executor",
16+
"schema": "./src/executors/deploy/schema.json",
17+
"description": "Deploy a Shopify theme to Shopify"
1818
}
1919
}
2020
}

packages/nx-shopify/generators.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
{
2-
"$schema": "../../node_modules/@angular-devkit/schematics/collection-schema.json",
2+
"$schema": "http://json-schema.org/schema",
33
"name": "nx-shopify",
44
"version": "0.0.1",
55
"generators": {
66
"init": {
7-
"factory": "./src/schematics/init/schematic",
8-
"schema": "./src/schematics/init/schema.json",
7+
"factory": "./src/generators/init/init.generator",
8+
"schema": "./src/generators/init/schema.json",
99
"description": "Initialize plugin"
1010
},
1111
"theme": {
12-
"factory": "./src/schematics/theme/schematic",
13-
"schema": "./src/schematics/theme/schema.json",
12+
"factory": "./src/generators/theme/theme.generator",
13+
"schema": "./src/generators/theme/schema.json",
1414
"description": "Generate new Shopify theme"
1515
}
1616
}

packages/nx-shopify/package.json

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,6 @@
2222
"themekit"
2323
],
2424
"main": "src/index.js",
25-
"schematics": "./collection.json",
26-
"builders": "./builders.json",
2725
"generators": "./generators.json",
2826
"executors": "./executors.json",
2927
"dependencies": {

packages/nx-shopify/src/builders/build/builder.spec.ts

Lines changed: 0 additions & 42 deletions
This file was deleted.

packages/nx-shopify/src/builders/build/builder.ts

Lines changed: 0 additions & 63 deletions
This file was deleted.

0 commit comments

Comments
 (0)