![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.
A wrapper around modern JavaScript tools.
npm i -D doogu
This package comes with a set of essential development dependencies:
Doogu provides shareable configs for ESLint, Prettier, and Semantic Release that can be reused across projects.
To extend the shareable ESLint configuration in your package.json
file, add the following:
{
"eslintConfig": {
"extends": "./node_modules/doogu/eslint"
}
}
To extend the shareable Prettier configuration in your package.json
file, add the following:
{
"prettier": "doogu/prettier.json"
}
To extend the shareable Semantic Release config in your package.json
file, add the following:
{
"release": "doogu/release.config.js"
}
You can utilize the following commands in your package.json
file:
{
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"test": "vitest",
"coverage": "vitest run --coverage",
"lint": "eslint .",
"format": "prettier --write ."
}
}
Or do anything you want:
{
"scripts": {
"start": "npm run dev",
"dev": "npm run types && vite build --ssr src/index.ts --emptyOutDir=false --watch",
"build": "vite build --ssr src/index.ts && npm run types",
"test": "vitest --ui",
"coverage": "vitest run --coverage",
"types": "tsc -d --emitDeclarationOnly --outDir ./dist && resolve-tspaths -o ./dist",
"lint": "tsc --noEmit && eslint .",
"format": "prettier --write ."
}
}
We 💛 issues.
When committing, please conform to the semantic-release commit standards. Please install commitizen
and the adapter globally, if you have not already.
npm i -g commitizen cz-conventional-changelog
Now you can use git cz
or just cz
instead of git commit
when committing. You can also use git-cz
, which is an alias for cz
.
git add . && git cz
A project by Stilearning © 2022-2023.
FAQs
A wrapper around modern JavaScript tools
The npm package doogu receives a total of 952 weekly downloads. As such, doogu popularity was classified as not popular.
We found that doogu 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.