sanity 5.0.0-next-major.12 → 5.0.0-next-major.14
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.
|
@@ -8,6 +8,7 @@ function requireDevAliases() {
|
|
|
8
8
|
// because they will be escaped by the jest config
|
|
9
9
|
"@sanity/diff": "@sanity/diff/src",
|
|
10
10
|
"@sanity/cli": "@sanity/cli/src",
|
|
11
|
+
"@sanity/codegen": "@sanity/codegen/src/_exports",
|
|
11
12
|
"@sanity/mutator": "@sanity/mutator/src",
|
|
12
13
|
"@sanity/schema": "@sanity/schema/src/_exports",
|
|
13
14
|
"@sanity/migrate": "@sanity/migrate/src/_exports",
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"dev-aliases.js","sources":["../../../@repo/dev-aliases/dev-aliases.cjs"],"sourcesContent":["/* eslint-disable tsdoc/syntax */\n\n// NOTE: THIS FILE NEEDS TO REMAIN COMMONJS\n// It can be converted to ESM/TS when we either not use jest anymore, or node/jest runner natively supports ESM (including with import.meta etc).\n\n/**\n * The path mappings/aliases used by various tools in the monorepo to map imported modules to\n * source files in order to speed up rebuilding and avoid having a separate watcher process to build\n * from `src` to `lib`.\n *\n * This file is currently read by:\n * - Vite when running the dev server (only when running in this monorepo)\n * - jest when running test suite\n *\n * @type Record<string, string>\n */\nconst devAliases = {\n // NOTE: do not use regex in the module expressions,\n // because they will be escaped by the jest config\n '@sanity/diff': '@sanity/diff/src',\n '@sanity/cli': '@sanity/cli/src',\n '@sanity/mutator': '@sanity/mutator/src',\n '@sanity/schema': '@sanity/schema/src/_exports',\n '@sanity/migrate': '@sanity/migrate/src/_exports',\n '@sanity/types': '@sanity/types/src',\n '@sanity/util': '@sanity/util/src/_exports',\n '@sanity/vision': '@sanity/vision/src',\n 'sanity': 'sanity/src/_exports',\n 'groq': 'groq/src/_exports.mts',\n}\n\nmodule.exports = devAliases\n"],"names":[],"mappings":";;;;;
|
|
1
|
+
{"version":3,"file":"dev-aliases.js","sources":["../../../@repo/dev-aliases/dev-aliases.cjs"],"sourcesContent":["/* eslint-disable tsdoc/syntax */\n\n// NOTE: THIS FILE NEEDS TO REMAIN COMMONJS\n// It can be converted to ESM/TS when we either not use jest anymore, or node/jest runner natively supports ESM (including with import.meta etc).\n\n/**\n * The path mappings/aliases used by various tools in the monorepo to map imported modules to\n * source files in order to speed up rebuilding and avoid having a separate watcher process to build\n * from `src` to `lib`.\n *\n * This file is currently read by:\n * - Vite when running the dev server (only when running in this monorepo)\n * - jest when running test suite\n *\n * @type Record<string, string>\n */\nconst devAliases = {\n // NOTE: do not use regex in the module expressions,\n // because they will be escaped by the jest config\n '@sanity/diff': '@sanity/diff/src',\n '@sanity/cli': '@sanity/cli/src',\n '@sanity/codegen': '@sanity/codegen/src/_exports',\n '@sanity/mutator': '@sanity/mutator/src',\n '@sanity/schema': '@sanity/schema/src/_exports',\n '@sanity/migrate': '@sanity/migrate/src/_exports',\n '@sanity/types': '@sanity/types/src',\n '@sanity/util': '@sanity/util/src/_exports',\n '@sanity/vision': '@sanity/vision/src',\n 'sanity': 'sanity/src/_exports',\n 'groq': 'groq/src/_exports.mts',\n}\n\nmodule.exports = devAliases\n"],"names":[],"mappings":";;;;;8DAgCA,eAhBmB;AAAA;AAAA;AAAA,IAGjB,gBAAgB;AAAA,IAChB,eAAe;AAAA,IACf,mBAAmB;AAAA,IACnB,mBAAmB;AAAA,IACnB,kBAAkB;AAAA,IAClB,mBAAmB;AAAA,IACnB,iBAAiB;AAAA,IACjB,gBAAgB;AAAA,IAChB,kBAAkB;AAAA,IAClB,QAAU;AAAA,IACV,MAAQ;AAAA,EACV;;;;;;"}
|
|
@@ -7,7 +7,7 @@ try {
|
|
|
7
7
|
try {
|
|
8
8
|
buildVersion = buildVersion || // This is replaced by `@sanity/pkg-utils` at build time
|
|
9
9
|
// and must always be references by its full static name, e.g. no optional chaining, no `if (process && process.env)` etc.
|
|
10
|
-
"5.0.0-next-major.
|
|
10
|
+
"5.0.0-next-major.14+63b1f6d82c";
|
|
11
11
|
} catch {
|
|
12
12
|
}
|
|
13
13
|
const SANITY_VERSION = buildVersion || `${version}-dev`;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "sanity",
|
|
3
|
-
"version": "5.0.0-next-major.
|
|
3
|
+
"version": "5.0.0-next-major.14+63b1f6d82c",
|
|
4
4
|
"description": "Sanity is a real-time content infrastructure with a scalable, hosted backend featuring a Graph Oriented Query Language (GROQ), asset pipelines and fast edge caches",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"sanity",
|
|
@@ -250,13 +250,13 @@
|
|
|
250
250
|
"which": "^5.0.0",
|
|
251
251
|
"xstate": "^5.24.0",
|
|
252
252
|
"yargs": "^17.7.2",
|
|
253
|
-
"@sanity/cli": "5.0.0-next-major.
|
|
254
|
-
"@sanity/
|
|
255
|
-
"@sanity/
|
|
256
|
-
"@sanity/
|
|
257
|
-
"@sanity/
|
|
258
|
-
"@sanity/
|
|
259
|
-
"@sanity/
|
|
253
|
+
"@sanity/cli": "5.0.0-next-major.14+63b1f6d82c",
|
|
254
|
+
"@sanity/migrate": "5.0.0-next-major.14+63b1f6d82c",
|
|
255
|
+
"@sanity/diff": "5.0.0-next-major.14+63b1f6d82c",
|
|
256
|
+
"@sanity/mutator": "5.0.0-next-major.14+63b1f6d82c",
|
|
257
|
+
"@sanity/schema": "5.0.0-next-major.14+63b1f6d82c",
|
|
258
|
+
"@sanity/util": "5.0.0-next-major.14+63b1f6d82c",
|
|
259
|
+
"@sanity/types": "5.0.0-next-major.14+63b1f6d82c"
|
|
260
260
|
},
|
|
261
261
|
"devDependencies": {
|
|
262
262
|
"@playwright/experimental-ct-react": "1.56.1",
|
|
@@ -302,13 +302,13 @@
|
|
|
302
302
|
"swr": "2.2.5",
|
|
303
303
|
"vitest": "^3.2.4",
|
|
304
304
|
"vitest-package-exports": "^0.1.1",
|
|
305
|
-
"@repo/dev-aliases": "5.0.0-next-major.
|
|
306
|
-
"@repo/
|
|
307
|
-
"@repo/
|
|
308
|
-
"@repo/package.config": "5.0.0-next-major.
|
|
309
|
-
"@
|
|
310
|
-
"@repo/tsconfig": "5.0.0-next-major.
|
|
311
|
-
"@
|
|
305
|
+
"@repo/dev-aliases": "5.0.0-next-major.14+63b1f6d82c",
|
|
306
|
+
"@repo/eslint-config": "5.0.0-next-major.14+63b1f6d82c",
|
|
307
|
+
"@repo/package.bundle": "5.0.0-next-major.14+63b1f6d82c",
|
|
308
|
+
"@repo/package.config": "5.0.0-next-major.14+63b1f6d82c",
|
|
309
|
+
"@sanity/codegen": "5.0.0-next-major.14+63b1f6d82c",
|
|
310
|
+
"@repo/tsconfig": "5.0.0-next-major.14+63b1f6d82c",
|
|
311
|
+
"@repo/test-config": "5.0.0-next-major.14+63b1f6d82c"
|
|
312
312
|
},
|
|
313
313
|
"peerDependencies": {
|
|
314
314
|
"react": "^19.2",
|