![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
@eclipse-glsp/dev
Advanced tools
All-in-one meta package that provides the GLSP development and test configuration packages, as well as the GLSP CLI package
A meta package that includes all shared configuration packages Eclipse GLSP components. In addition, it also provides the GLSP CLI application.
The package is available via npm and can be used by all GLSP components implemented with Typescript.
@eclipse-glsp/config
: Meta package for shared build configuration
@eclipse-glsp/ts-config
: Shared Typescript configuration for GLSP projects@eclipse-glsp/eslint-config
: Shared ESLint configuration for GLSP projects@eclipse-glsp/prettier-config
: Shared Prettier configuration for GLSP projects@eclipse-glsp/config-test
: Meta package for shared test configuration
@eclipse-glsp/mocha-config
: Shared Mocha configuration for GLSP projects@eclipse-glsp/nyc-config
: Shared nyc configuration for GLSP projects@eclipse-glsp/cli
: CLI Tooling & scripts for GLSP projectsyarn add --dev @eclipse-glsp/dev
Create a tsconfig.json
:
{
"extends": "@eclipse-glsp/ts-config/tsconfig.json",
"compilerOptions": {
"rootDir": "src",
"outDir": "lib"
}
}
In addition, a custom configuration for projects that use mocha
is available:
@eclipse-glsp/ts-config/mocha
Create a .eslintrc.js
:
/** @type {import('eslint').Linter.Config} */
module.exports = {
extends: '@eclipse-glsp',
parserOptions: {
tsconfigRootDir: __dirname,
project: 'tsconfig.json'
}
};
Add to the package.json
:
{
// ...
"prettier": "@eclipse-glsp/prettier-config"
}
Or add a .prettierrc
to the workspace root:
"@eclipse-glsp/prettier-config"
Create a .mocharc
:
{
"$schema": "https://json.schemastore.org/mocharc",
"extends": "@eclipse-glsp/mocha-config"
}
Add a .nycrc
to your project root:
{
"extends": "@eclipse-glsp/nyc-config"
}
Configuration can also be provided by nyc.config.js
if programmed logic is required.
For more information, please visit the Eclipse GLSP Umbrella repository and the Eclipse GLSP Website. If you have questions, please raise them in the discussions and have a look at our communication and support options.
generateIndex
command to the GLSP CLI. Allows autogeneration of index files in GLSP projects. #1197release
CLI command. #1226checkHeader
CLI command. Focus on end year copyright header validation and remove the error-prone validation of the start year. #1289updateNext
command to the GLSP CLI tool. Allows updating of all dependencies in GLSP projects that are tagged with `next´. 1229ES2019
#1372FAQs
All-in-one meta package that provides the GLSP development and test configuration packages, as well as the GLSP CLI package
The npm package @eclipse-glsp/dev receives a total of 41 weekly downloads. As such, @eclipse-glsp/dev popularity was classified as not popular.
We found that @eclipse-glsp/dev demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 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
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.