PluginProbe ʕ •ᴥ•ʔ
Auto Post Cleaner / 3.9.0
Auto Post Cleaner v3.9.0
3.12.0 3.13.1 3.2.4 3.2.5 3.3.0 3.3.10 3.3.11 3.3.8 3.4.2 3.5.3 3.6.0 3.7.0 3.7.1 3.7.2 3.7.3 3.7.5 3.7.6 3.8.0 3.9.0 3.9.4 3.9.6 3.9.7 trunk 3.0.0 3.1.0 3.10.1 3.10.2 3.11.4
delete-old-posts-programmatically / package.json
delete-old-posts-programmatically Last commit date
assets 2 years ago freemius 1 year ago inc 1 year ago languages 3 years ago README.md 2 years ago composer.json 5 years ago delete-old-posts-premium.php 3 years ago delete-old-posts-programmatically.php 3 years ago delete-old-posts.php 1 year ago package-lock.json 2 years ago package.json 2 years ago postcss.config.js 5 years ago readme.txt 1 year ago styles.css 2 years ago tailwind.config.js 2 years ago
package.json
24 lines
1 {
2 "name": "delete-old-posts-plugin",
3 "scripts": {
4 "build": "node_modules/.bin/postcss styles.css -o ./assets/css/tailwind.css",
5 "watch": "node_modules/.bin/postcss styles.css -o ./assets/css/tailwind.css --watch",
6 "start:message": "echo 'Watching for code changes. Start making changes!'",
7 "watch:php": "onchange 'inc/*.php' -- npm run build",
8 "watch:css": "onchange 'styles.css' -- npm run build",
9 "start": "npm run watch:php & npm run watch:css"
10 },
11 "dependencies": {
12 "onchange": "^7.1.0",
13 "postcss-import": "^14.0.1",
14 "postcss-loader": "^7.0.1"
15 },
16 "devDependencies": {
17 "@fullhuman/postcss-purgecss": "^3.1.3",
18 "autoprefixer": "^10.4.8",
19 "postcss": "^8.4.35",
20 "postcss-cli": "^8.3.1",
21 "tailwindcss": "^3.1.8"
22 }
23 }
24