Skip to content

Commit 5c5b30c

Browse files
committed
Minor edits
1 parent 32d1b17 commit 5c5b30c

3 files changed

Lines changed: 9 additions & 7 deletions

File tree

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ config.rb
4040
# Composer #
4141
############
4242
!src/js/vendor/
43-
wpcs/
43+
yarn.lock
4444
composer.lock
4545

4646
# Gulp #

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[![Author](https://img.shields.io/badge/author-Daniel%20M.%20Hendricks-lightgrey.svg?colorB=9900cc )](https://www.danhendricks.com)
22
[![Latest Version](https://img.shields.io/github/release/dmhendricks/wordpress-base-plugin.svg)](https://github.com/dmhendricks/wordpress-base-plugin/releases)
33
[![Donate](https://img.shields.io/badge/Donate-PayPal-green.svg)](https://paypal.me/danielhendricks)
4-
[![WP Engine](https://img.shields.io/badge/WP%20Engine-Compatible-orange.svg)](http://bit.ly/WPEnginePlans)
4+
[![CloudVerve, LLC](https://img.shields.io/badge/style-CloudVerve-green.svg?style=flat&label=get%20hosted&colorB=AE2A21)](https://2lab.net)
55
[![GitHub License](https://img.shields.io/badge/license-GPLv2-yellow.svg)](https://raw.githubusercontent.com/dmhendricks/wordpress-base-plugin/master/LICENSE)
66
[![Twitter](https://img.shields.io/twitter/url/https/github.com/dmhendricks/wordpress-base-plugin.svg?style=social)](https://twitter.com/danielhendricks)
77

@@ -76,6 +76,7 @@ See the [Getting Started](https://github.com/dmhendricks/wordpress-base-plugin/w
7676
* Refactor the Plugin base class
7777
* Add [phpdotenv](https://github.com/etelford/phpdotenv) support
7878
* Add some Carbon Fields CSS helper classes
79+
* Switch to npm and WebPack for frontend dependency management
7980

8081
## Change Log
8182

package.json

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,26 +12,27 @@
1212
"zip": "zip -q -r ../$npm_package_name.zip * -x 'node_modules/*' '.git*' './src/*' './.*' './package*.*' './composer.*' './*.md' './*.bak' './bower.json' './gulpfile.js' "
1313
},
1414
"devDependencies": {
15+
"del": "^3.0",
1516
"gulp": "^3.9.1",
1617
"gulp-autoprefixer": "^3.1.0",
18+
"gulp-batch-replace": "*",
1719
"gulp-concat": "^2.5.2",
1820
"gulp-filter": "^4.0.0",
1921
"gulp-line-ending-corrector": "^1.0.1",
2022
"gulp-merge-media-queries": "^0.2.1",
2123
"gulp-notify": "^2.2.0",
2224
"gulp-rename": "^1.2.0",
2325
"gulp-sass": "^2.2.0",
26+
"gulp-simple-rename": "^0.1.3",
2427
"gulp-sourcemaps": "^1.5.2",
2528
"gulp-uglify": "^1.5.3",
2629
"gulp-uglifycss": "^1.0.6",
27-
"gulp-batch-replace": "*",
28-
"gulp-simple-rename": "^0.1.3",
2930
"vinyl-paths": "^2.1.0",
30-
"wp-pot-cli": "^1.0",
31-
"del": "^3.0"
31+
"wp-pot-cli": "^1.0"
3232
},
3333
"repository": {
3434
"type": "git",
3535
"url": "git://github.com/dmhendricks/wordpress-base-plugin.git"
36-
}
36+
},
37+
"dependencies": {}
3738
}

0 commit comments

Comments
 (0)