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.
@billogram/billo-scripts-node
Advanced tools
Scripts for building and maintaining TypeScript Node.js apps
yarn add --dev @billogram/billo-scripts-node
Add the following scripts to package.json
.
{
"scripts": {
"build": "billo-scripts-node build",
"test": "billo-scripts-node test",
"ts:compile": "billo-scripts-node ts-compile",
"ts:lint": "billo-scripts-node ts-lint",
"ts:test": "billo-scripts-node ts-test",
"ts:watch": "billo-scripts-node ts-watch",
}
}
It is possible to skip hooks for sequence tasks by passing --skip-pre-script
, --skip-script
, and --skip-post-script
, which is the same as --skip-pre-script=<task-name>
, --skip-script=<task-name>
, and --skip-post-script=<task-name>
.
Add a tsconfig.json
file in the same folder as package.json
.
{
"extends": "@billogram/typescript-config-node",
"compilerOptions": {
"outDir": "./dist",
"rootDir": "./src"
}
}
Add a tslint.eslint.json
file in the same folder as package.json
.
{
"extends": "./tsconfig.json",
"compilerOptions": {
"allowJs": true
},
"exclude": [
"node_modules"
],
"include": [
"**/*"
]
}
These tasks will be run in silent mode, which means the output for each individual task will be minimal.
build
Run all necessary tasks to generate a fresh build in the dist
folder.
empty-dist
ts-compile
generate-license
filter-dist
test
Run all necessary tasks to test the quality of the project.
ts-lint
ts-test
empty-dist
Empty the dist
folder.
filter-dist
Remove unwanted test and source map files from the dist
folder.
generate-license
Generate a project license in the dist
folder.
ts-compile
Compile TypeScript to JavaScript and put the output in the dist
folder.
ts-lint
Lint source files using ESLint.
ts-test
Run tests using Jest.
ts-watch
Re-compile TypeScript to JavaScript and put the output in the dist
folder on changes to the source files.
This library is being published with our use cases in mind and is not necessarily meant to be consumed by the broader public. We probably won't take your feature requests unless they align with our own needs.
MIT
FAQs
> Scripts for building and maintaining TypeScript Node.js apps
We found that @billogram/billo-scripts-node demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 8 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.