@sanity/plugin-kit 2.1.6 → 2.1.8

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.
@@ -1,6 +1,16 @@
1
1
  ---
2
2
  name: CI & Release
3
3
 
4
+ # Workflow name based on selected inputs. Fallback to default Github naming when expression evaluates to empty string
5
+ run-name: >-
6
+ ${{
7
+ inputs.release && inputs.test && 'Build ➤ Test ➤ Publish to NPM' ||
8
+ inputs.release && !inputs.test && 'Build ➤ Skip Tests ➤ Publish to NPM' ||
9
+ github.event_name == 'workflow_dispatch' && inputs.test && 'Build ➤ Test' ||
10
+ github.event_name == 'workflow_dispatch' && !inputs.test && 'Build ➤ Skip Tests' ||
11
+ ''
12
+ }}
13
+
4
14
  on:
5
15
  # Build on pushes branches that have a PR (including drafts)
6
16
  pull_request:
package/lib/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sanity/plugin-kit",
3
- "version": "2.1.6",
3
+ "version": "2.1.8",
4
4
  "description": "Enhanced Sanity.io plugin development experience",
5
5
  "keywords": [
6
6
  "sanity-io",
@@ -112,7 +112,7 @@
112
112
  "prettier-plugin-packagejson": "^2.3.0",
113
113
  "readdirp": "^3.6.0",
114
114
  "rimraf": "^3.0.2",
115
- "sanity": "3.0.0-rc.0",
115
+ "sanity": "3.0.0-rc.2",
116
116
  "sinon": "^14.0.0",
117
117
  "tap": "^16.3.0",
118
118
  "ts-node": "^10.9.1",
@@ -1,7 +1,7 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.forcedDevPackageVersions = exports.forcedPackageVersions = void 0;
4
- const sanityVersion = '3.0.0-rc.0';
4
+ const sanityVersion = '3.0.0-rc.2';
5
5
  exports.forcedPackageVersions = {
6
6
  react: '^18',
7
7
  '@types/react': '^18',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sanity/plugin-kit",
3
- "version": "2.1.6",
3
+ "version": "2.1.8",
4
4
  "description": "Enhanced Sanity.io plugin development experience",
5
5
  "keywords": [
6
6
  "sanity-io",
@@ -112,7 +112,7 @@
112
112
  "prettier-plugin-packagejson": "^2.3.0",
113
113
  "readdirp": "^3.6.0",
114
114
  "rimraf": "^3.0.2",
115
- "sanity": "3.0.0-rc.0",
115
+ "sanity": "3.0.0-rc.2",
116
116
  "sinon": "^14.0.0",
117
117
  "tap": "^16.3.0",
118
118
  "ts-node": "^10.9.1",
@@ -1,4 +1,4 @@
1
- const sanityVersion = '3.0.0-rc.0'
1
+ const sanityVersion = '3.0.0-rc.2'
2
2
 
3
3
  export const forcedPackageVersions = {
4
4
  react: '^18',