Security News
RubyGems.org Adds New Maintainer Role
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
@curve-technology/webapp-scripts
Advanced tools
Tooling, configuration and build-related scripts for Curve web apps
Install @curve-technology/webapp-scripts
and its peerDependencies
yarn add --dev @curve-technology/webapp-scripts jest eslint
To use this config, create an .babelrc
file in the root of your package and add:
{
"extends": "@curve-technology/webapp-scripts/babel/nextjs"
}
There are four eslint configs available, pick the one most appropriate for your project:
./node_modules/@curve-technology/webapp-scripts/eslint/eslint-js
./node_modules/@curve-technology/webapp-scripts/eslint/eslint-js-react
./node_modules/@curve-technology/webapp-scripts/eslint/eslint-ts
./node_modules/@curve-technology/webapp-scripts/eslint/eslint-ts-react
To use this config, create an .eslintrc
file in the root of your package and reference one of the mentioned config options.
.eslintrc
Using a configuration file
The extends property value can be an absolute or relative path to a base configuration file. ESLint resolves a relative path to a base configuration file relative to the configuration file that uses it.
Example of a configuration file in JSON format:
{
"extends": [
"./node_modules/@curve-technology/webapp-scripts/eslint/eslint-ts-react"
],
"rules": {
"eqeqeq": "warn"
}
}
This config assumes you're using jest.
To use this config, create an jest.config.js
file in the root of your package and add:
module.exports = {
...require('@curve-technology/webapp-scripts/jest'),
}
If you need to add or override this config, use something like this:
const jestConfig = require('@curve-technology/webapp-scripts/jest')
// add an item to `setupFilesAfterEnv`
jestConfig.setupFilesAfterEnv.push('<rootDir>src/testUtils/mocks.js')
module.exports = Object.assign(jestConfig, {
// your overrides here
testPathIgnorePatterns: ['/dist/', '/node_modules/'],
setupFiles: ['dotenv/config'],
snapshotSerializers: ['jest-emotion'],
})
To use this config, create an .prettierrc.js
file in the root of your package and add:
module.exports = {
...require('@curve-technology/webapp-scripts/prettier'),
}
To use this config, create an .huskyrc.js
file in the root of your package and add:
module.exports = {
...require('@curve-technology/webapp-scripts/husky'),
}
To use this config, create an .commitlintrc.js
file in the root of your package and add:
module.exports = {
...require('@curve-technology/webapp-scripts/commitlint'),
}
To use this config, create an tsconfig.json
file in the root of your repo and add:
{
"extends": "@curve-technology/webapp-scripts/tsconfig/tsconfig.base",
"exclude": ["node_modules", "./.storybook/**/*"],
"include": ["next-env.d.ts", "src/**/*.ts", "src/**/*.tsx"]
}
To use this config, create an lighthouserc.js
file in the root of your repo and add:
module.exports = {
ci: {
...require('@curve-technology/webapp-scripts/lighthouse'),
},
}
Made by Curve's web scientists 👨🔬
FAQs
Tooling, configuration and build-related scripts for Curve web apps
We found that @curve-technology/webapp-scripts demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 3 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
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.
Security News
Research
Socket's threat research team has detected five malicious npm packages targeting Roblox developers, deploying malware to steal credentials and personal data.