Security News
PyPI’s New Archival Feature Closes a Major Security Gap
PyPI now allows maintainers to archive projects, improving security and helping users make informed decisions about their dependencies.
jest-editor-support
Advanced tools
[![Build Status](https://github.com/jest-community/jest-editor-support/actions/workflows/node-ci.yml/badge.svg)](https://github.com/jest-community/jest-editor-support/actions) [![Coverage Status](https://coveralls.io/repos/github/jest-community/jest-edito
The engine that allows editors to build on top of Jest.
This is only useful if you are interested in building an editor integration for Jest.
parse(
filePath: string,
serializedData?: string,
options?: JESParserOptions
);
JESParserOptions =
{
plugins?: JESParserPluginOptions;
strictMode?: boolean;
};
JESParserPluginOptions =
{
decorators?: 'legacy' | {
decoratorsBeforeExport?: boolean;
allowCallParenthesized?: boolean;
}
}
Parse is a static Jest parser which uses Babel 7 and supports js,jsx,mjs,ts,tsx files.
Supported ECMAScript proposals
decorators
.examples:
parse('test.spec.ts');
parse('parameterDecorators.spec.ts', undefined, {plugins: {decorators: 'legacy'}})
parse('parameterDecorators.spec.ts', undefined,
{plugins:
{decorators:
{decoratorsBeforeExport: false}
}
})
Since version 18.2.0
TypeScript is now a peer dependency. If you don't need to handle .tsx
files then you can safely ignore the warning during installation.
FAQs
[![Build Status](https://github.com/jest-community/jest-editor-support/actions/workflows/node-ci.yml/badge.svg)](https://github.com/jest-community/jest-editor-support/actions) [![Coverage Status](https://coveralls.io/repos/github/jest-community/jest-edito
We found that jest-editor-support demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 7 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
PyPI now allows maintainers to archive projects, improving security and helping users make informed decisions about their dependencies.
Research
Security News
Malicious npm package postcss-optimizer delivers BeaverTail malware, targeting developer systems; similarities to past campaigns suggest a North Korean connection.
Security News
CISA's KEV data is now on GitHub, offering easier access, API integration, commit history tracking, and automated updates for security teams and researchers.