-
Notifications
You must be signed in to change notification settings - Fork 0
Update package.json #17
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
|
@@ -15,6 +15,10 @@ | |||||||||||||||||
| "url": "https://github.com/sponsors/tannerlinsley" | ||||||||||||||||||
| }, | ||||||||||||||||||
| "scripts": { | ||||||||||||||||||
|
|
||||||||||||||||||
| dd | ||||||||||||||||||
| II | ||||||||||||||||||
| dfsgfs | ||||||||||||||||||
|
Comment on lines
+19
to
+21
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Invalid JSON StructureInvalid tokens inserted into package.json scripts section breaks JSON syntax. The strings 'dd', 'II', and 'dfsgfs' are not valid JSON properties, causing npm script parsing failures and blocking all package operations including clean, compile, and test commands. Commitable Suggestion
Suggested change
Standards
Comment on lines
+19
to
+21
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Corrupted JSON ConfigurationInvalid JSON tokens in scripts section break npm command execution and CI pipeline functionality. Malformed configuration blocks all development workflows including builds, tests, and deployments for the eslint-plugin-query package. Commitable Suggestion
Suggested change
Standards
|
||||||||||||||||||
| "clean": "premove ./dist ./coverage ./dist-ts", | ||||||||||||||||||
| "compile": "tsc --build", | ||||||||||||||||||
| "test:eslint": "eslint ./src", | ||||||||||||||||||
|
|
||||||||||||||||||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Invalid JSON Syntax
Invalid token 'dd' inserted into JSON structure breaks package.json parsing. This malformed JSON will cause npm install failures and prevent script execution across development and CI environments.
Standards