wp-dev-lib icon indicating copy to clipboard operation
wp-dev-lib copied to clipboard

DEPRECATED. Common code used during development of WordPress plugins and themes

Results 52 wp-dev-lib issues
Sort by recently updated
recently updated
newest added

Bumps [minimist](https://github.com/substack/minimist) from 1.2.5 to 1.2.6. Commits 7efb22a 1.2.6 ef88b93 security notice for additional prototype pollution issue c2b9819 isConstructorOrProto adapted from PR bc8ecee test from prototype pollution PR See full...

dependencies

Bumps [path-parse](https://github.com/jbgutierrez/path-parse) from 1.0.6 to 1.0.7. Commits See full diff in compare view [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=path-parse&package-manager=npm_and_yarn&previous-version=1.0.6&new-version=1.0.7)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter...

dependencies

Bumps [hosted-git-info](https://github.com/npm/hosted-git-info) from 2.7.1 to 2.8.9. Changelog Sourced from hosted-git-info's changelog. 2.8.9 (2021-04-07) Bug Fixes backport regex fix from #76 (29adfe5), closes #84 2.8.8 (2020-02-29) Bug Fixes #61 & #65...

dependencies

Some Travis runs use an invalid diff range during `travis.install.sh` which results in the following error: ``` $ source "$DEV_LIB_PATH/travis.install.sh" git diff master...2abbda3a1c6b90a0173e832e250ce2007e3fd074 fatal: Invalid symmetric difference expression master...2abbda3a1c6b90a0173e832e250ce2007e3fd074 ```...

bug

In https://github.com/xwp/wp-dev-lib/blob/420f1bac828e105a19a904cab97d042891d4b84e/scripts/check-diff.sh#L804-L816 we pass `$(coverage_clover)` which is equal to `--coverage-clover build/logs/clover.xml` if `can_generate_coverage_clover` returns `1` which is the case whenever a Coveralls config file is found in the project root...

Fixes #322 Include a Docker container that can be used to run all tasks. Projects using `wp-dev-lib` can now use the pre-build Docker image to run all tasks supported by...

enhancement

Historically wp-dev-lib has relied on bash scripts and global environment dependencies such as a *nix operating system, PHP CLI, subversion, git, mysql server and client -- all running on the...

enhancement

This lib creates a tmp directory with changed files only, in order to lint them. However this causes issues when using Eslint rule [`import/no-unresolved`](https://github.com/benmosher/eslint-plugin-import/blob/master/docs/rules/no-unresolved.md). When a changed file (changed line,...

The Git `pre-commit` hook currently runs all checks no matter what files have changed and this is not efficient. For example, an update to a README.md file will run all...

enhancement

When running the pre-commit install script from wp-dev-lib, the pre-commit file in .git/hooks should be overwritten, if it exists. Currently, the script just fails and this is troublesome when trying...

bug