-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* WIP Build field type views * Remove FIELD_TYPES files that i forgot to remove in the other pr * Build Relationship field type * Build Content blocks * WIP build Controllers * Update preconstruct which fixes a bug so it all works now * Change exclude in babel-loader config to just /node_modules/ 🎉 * Update preconstruct * Add changeset * Fix tests * Update preconstruct
- Loading branch information
Showing
157 changed files
with
577 additions
and
75 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
{ | ||
"releases": [ | ||
{ "name": "@keystone-alpha/admin-ui", "type": "major" }, | ||
{ "name": "@keystone-alpha/fields", "type": "major" }, | ||
{ "name": "@keystone-alpha/cypress-project-basic", "type": "patch" }, | ||
{ "name": "@keystone-alpha/website", "type": "patch" } | ||
], | ||
"dependents": [ | ||
{ | ||
"name": "@keystone-alpha/demo-project-blog", | ||
"type": "patch", | ||
"dependencies": [ | ||
"@keystone-alpha/keystone", | ||
"@keystone-alpha/admin-ui", | ||
"@keystone-alpha/fields" | ||
] | ||
}, | ||
{ | ||
"name": "@keystone-alpha/demo-project-todo", | ||
"type": "patch", | ||
"dependencies": [ | ||
"@keystone-alpha/keystone", | ||
"@keystone-alpha/admin-ui", | ||
"@keystone-alpha/fields" | ||
] | ||
}, | ||
{ | ||
"name": "@keystone-alpha/cypress-project-access-control", | ||
"type": "patch", | ||
"dependencies": [ | ||
"@keystone-alpha/keystone", | ||
"@keystone-alpha/admin-ui", | ||
"@keystone-alpha/fields" | ||
] | ||
}, | ||
{ | ||
"name": "@keystone-alpha/cypress-project-login", | ||
"type": "patch", | ||
"dependencies": [ | ||
"@keystone-alpha/keystone", | ||
"@keystone-alpha/admin-ui", | ||
"@keystone-alpha/fields" | ||
] | ||
}, | ||
{ | ||
"name": "@keystone-alpha/cypress-project-twitter-login", | ||
"type": "patch", | ||
"dependencies": [ | ||
"@keystone-alpha/keystone", | ||
"@keystone-alpha/admin-ui", | ||
"@keystone-alpha/fields" | ||
] | ||
}, | ||
{ | ||
"name": "@keystone-alpha/keystone", | ||
"type": "patch", | ||
"dependencies": ["@keystone-alpha/fields"] | ||
}, | ||
{ | ||
"name": "@keystone-alpha/api-tests", | ||
"type": "patch", | ||
"dependencies": ["@keystone-alpha/keystone", "@keystone-alpha/fields"] | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
- Build field type views before publishing to npm and stop running Babel on Keystone packages in node_modules in the Admin UI |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
{ | ||
"main": "dist/fields.cjs.js", | ||
"module": "dist/fields.esm.js", | ||
"preconstruct": { | ||
"source": "../src/Cell" | ||
} | ||
} |
7 changes: 7 additions & 0 deletions
7
packages/fields/types/CalendarDay/views/Controller/package.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
{ | ||
"main": "dist/fields.cjs.js", | ||
"module": "dist/fields.esm.js", | ||
"preconstruct": { | ||
"source": "../src/Controller" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
{ | ||
"main": "dist/fields.cjs.js", | ||
"module": "dist/fields.esm.js", | ||
"preconstruct": { | ||
"source": "../src/Field" | ||
} | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
{ | ||
"main": "dist/fields.cjs.js", | ||
"module": "dist/fields.esm.js", | ||
"preconstruct": { | ||
"source": "../src/Filter" | ||
} | ||
} |
File renamed without changes.
2 changes: 1 addition & 1 deletion
2
...es/fields/types/CalendarDay/Controller.js → ...types/CalendarDay/views/src/Controller.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
{ | ||
"main": "dist/fields.cjs.js", | ||
"module": "dist/fields.esm.js", | ||
"preconstruct": { | ||
"source": "../src/Cell" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
{ | ||
"main": "dist/fields.cjs.js", | ||
"module": "dist/fields.esm.js", | ||
"preconstruct": { | ||
"source": "../src/Controller" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
{ | ||
"main": "dist/fields.cjs.js", | ||
"module": "dist/fields.esm.js", | ||
"preconstruct": { | ||
"source": "../src/Field" | ||
} | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
{ | ||
"main": "dist/fields.cjs.js", | ||
"module": "dist/fields.esm.js", | ||
"preconstruct": { | ||
"source": "../src/Filter" | ||
} | ||
} |
2 changes: 1 addition & 1 deletion
2
packages/fields/types/Checkbox/views/Cell.js → ...s/fields/types/Checkbox/views/src/Cell.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
packages/fields/types/Checkbox/Controller.js → ...ds/types/Checkbox/views/src/Controller.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
2 changes: 1 addition & 1 deletion
2
...ges/fields/types/Checkbox/views/Filter.js → ...fields/types/Checkbox/views/src/Filter.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
7 changes: 7 additions & 0 deletions
7
packages/fields/types/CloudinaryImage/views/Cell/package.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
{ | ||
"main": "dist/fields.cjs.js", | ||
"module": "dist/fields.esm.js", | ||
"preconstruct": { | ||
"source": "../src/Cell" | ||
} | ||
} |
7 changes: 7 additions & 0 deletions
7
packages/fields/types/CloudinaryImage/views/Controller/package.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
{ | ||
"main": "dist/fields.cjs.js", | ||
"module": "dist/fields.esm.js", | ||
"preconstruct": { | ||
"source": "../src/Controller" | ||
} | ||
} |
8 changes: 8 additions & 0 deletions
8
packages/fields/types/CloudinaryImage/views/Field/package.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
{ | ||
"main": "dist/fields.cjs.js", | ||
"module": "dist/fields.esm.js", | ||
"preconstruct": { | ||
"source": "../src/Field" | ||
} | ||
} | ||
|
2 changes: 1 addition & 1 deletion
2
...ields/types/CloudinaryImage/views/Cell.js → ...s/types/CloudinaryImage/views/src/Cell.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...ields/types/CloudinaryImage/Controller.js → ...s/CloudinaryImage/views/src/Controller.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
{ | ||
"main": "dist/fields.cjs.js", | ||
"module": "dist/fields.esm.js", | ||
"preconstruct": { | ||
"source": "../src/Cell" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
{ | ||
"main": "dist/fields.cjs.js", | ||
"module": "dist/fields.esm.js", | ||
"preconstruct": { | ||
"source": "../src/Field" | ||
} | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
{ | ||
"main": "dist/fields.cjs.js", | ||
"module": "dist/fields.esm.js", | ||
"preconstruct": { | ||
"source": "../src/Controller" | ||
} | ||
} |
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
{ | ||
"main": "dist/fields.cjs.js", | ||
"module": "dist/fields.esm.js", | ||
"preconstruct": { | ||
"source": "../src/Field" | ||
} | ||
} |
7 changes: 7 additions & 0 deletions
7
packages/fields/types/Content/views/blocks/blockquote/package.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
{ | ||
"main": "dist/fields.cjs.js", | ||
"module": "dist/fields.esm.js", | ||
"preconstruct": { | ||
"source": "../../src/editor/blocks/blockquote" | ||
} | ||
} |
Oops, something went wrong.