
Security News
Axios Supply Chain Attack Reaches OpenAI macOS Signing Pipeline, Forces Certificate Rotation
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.
@psff/devkit
Advanced tools
Package with the dependencies needed to build and test common components and services.
yarn add @psff/devkit
Check the cli help for all the available commands
yarn psff-devkit --help
Add the scripts needed in your package and remove all dependencies from
dependenciesanddevDependencies` already satisfied by devkit.
Vue package example.
"scripts": {
"build": "psff-devkit vue build",
"test:unit": "psff-devkit vue test:unit",
"test:unit:coverage": "psff-devkit vue test:unit --coverage",
"test:unit:watch": "psff-devkit vue test:unit --watch"
},
"dependencies": {
"@psff/devkit": "0.0.0"
},
"devDependencies": {},
.config filesbabel.config.js
module.exports = {
...require('@psff/devkit/babel.config')
}
jest.config.js
module.exports = {
...require('@psff/devkit/jest.config'),
setupFiles: [
'<rootDir>/tests/unit/setup.ts',
]
};
postcss.config.js
module.exports = {
...require('@psff/devkit/postcss.config')
};
tsconfig.js
{
"extends": "@psff/devkit/tsconfig.vue.json",
"compilerOptions": {
"baseUrl": "."
},
"include": [
"src/**/*.ts",
"src/**/*.tsx",
"src/**/*.vue",
"tests/**/*.ts",
"tests/**/*.tsx"
],
"exclude": [
"node_modules"
]
}
vue.config.js
module.exports = {
...require('@psff/devkit/vue.config')
};
FAQs
Devkit to build apps & components
The npm package @psff/devkit receives a total of 0 weekly downloads. As such, @psff/devkit popularity was classified as not popular.
We found that @psff/devkit demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.

Security News
Open source is under attack because of how much value it creates. It has been the foundation of every major software innovation for the last three decades. This is not the time to walk away from it.

Security News
Socket CEO Feross Aboukhadijeh breaks down how North Korea hijacked Axios and what it means for the future of software supply chain security.