
Research
Malicious npm Packages Impersonate Flashbots SDKs, Targeting Ethereum Wallet Credentials
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
wpify-scripts
Advanced tools
Easy build process automation that utilizes @wordpress/scripts
, but adds hot reloading with BrowserSync to hot
script and creating plugin archive with archive
script.
npm install -D wpify-scripts
{
"scripts": {
"build": "wpify build",
"start": "wpify start",
"hot": "wpify hot",
"archive": "wpify archive",
"check-engines": "wpify check-engines",
"check-licenses": "wpify check-licenses",
"format:js": "wpify format-js",
"lint:css": "wpify lint-style",
"lint:js": "wpify lint-js",
"lint:md:docs": "wpify lint-md-docs",
"lint:md:js": "wpify lint-md-js",
"lint:pkg-json": "wpify lint-pkg-json",
"packages-update": "wpify packages-update",
"test:e2e": "wpify test-e2e",
"test:unit": "wpify test-unit-js"
}
}
Configuration file wpify.config.js
is in the root directory:
const path = require('path');
module.exports = {
wordPressUrl: 'http://localhost',
config: {
build: 'build', // folder where built files end-up
entry: { // entry points
'app': './assets/app.jsx',
'theme': [
'./assets/theme/main.js',
'./assets/theme/main.scss',
],
},
},
copy: { // copy built files somewhere else
'editor-style.scss': path.resolve('./themes/custom-theme/editor-style.css'),
},
webpack: (config) => {
// custom modification of Webpack configuration
return config;
},
browserSync: (config) => {
// custom configuration of browserSync init configuration
return config;
},
};
FAQs
WPify scripts to automate development and builds
The npm package wpify-scripts receives a total of 23 weekly downloads. As such, wpify-scripts popularity was classified as not popular.
We found that wpify-scripts demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 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.
Research
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
Security News
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.
Security News
Following last week’s supply chain attack, Nx published findings on the GitHub Actions exploit and moved npm publishing to Trusted Publishers.