Skip to content

Commit

Permalink
fix: replace the JSON5 parser with JSON
Browse files Browse the repository at this point in the history
  • Loading branch information
kmelve authored and cngonzalez committed Apr 2, 2024
1 parent 8db7485 commit 8e56abc
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 10 deletions.
2 changes: 1 addition & 1 deletion packages/@sanity/cli/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -71,11 +71,11 @@
"esbuild": "^0.20.0",
"esbuild-register": "^3.4.1",
"get-it": "^8.4.16",
"golden-fleece": "^1.0.9",
"groq-js": "^1.7.0",
"node-machine-id": "^1.1.12",
"pkg-dir": "^5.0.0",
"semver": "^7.3.5",
"silver-fleece": "^1.1.0",
"validate-npm-package-name": "^3.0.0"
},
"devDependencies": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@ import dotenv from 'dotenv'
import execa, {type CommonOptions} from 'execa'
import {existsSync, readFileSync} from 'fs'
import fs from 'fs/promises'
import {evaluate, patch} from 'golden-fleece'
import deburr from 'lodash/deburr'
import noop from 'lodash/noop'
import pFilter from 'p-filter'
import path from 'path'
import resolveFrom from 'resolve-from'
import {evaluate, patch} from 'silver-fleece'
import which from 'which'

import {CLIInitStepCompleted} from '../../__telemetry__/init.telemetry'
Expand Down
17 changes: 9 additions & 8 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 8e56abc

Please sign in to comment.