Skip to content
This repository has been archived by the owner on May 9, 2024. It is now read-only.

Commit

Permalink
Add external Node tasks runner config.
Browse files Browse the repository at this point in the history
  • Loading branch information
ve3 committed Jan 24, 2023
1 parent 9900988 commit 71e7a56
Showing 1 changed file with 115 additions and 0 deletions.
115 changes: 115 additions & 0 deletions node_tasks/config/config.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,115 @@
{
"moduleName": "Rundiz Events",
"wpDev": true,
"build": {
"clean": {
"destinations": [
]
},
"copy": {
"copyTasks": [
],
"copyWP": [
{
"patterns": "App/**",
"destination": "App"
},
{
"patterns": "assets/**",
"destination": "assets"
},
{
"patterns": "*.md",
"destination": "."
},
{
"patterns": "*.php",
"destination": "."
},
{
"patterns": "*.txt",
"destination": "."
}
]
},
"customTasks": [
]
},
"watch": {
"watcher": [
{
"patterns": "App/**",
"destination": "App"
},
{
"patterns": "assets/**",
"destination": "assets"
},
{
"patterns": "*.php",
"destination": "."
},
{
"patterns": "*.txt",
"destination": "."
}
],
"customWatches": [
]
},
"writeVersions": [
],
"pack": {
"versionHeaderFile": "readme.txt",
"versionPattern": "Stable tag(\\s?)(:?)(\\s?)(?<version>([\\d\\.]+)([-+\\.0-9a-z]*))",
"packPatterns": {
"dev": {
"patterns": [
"**",
".*/**",
".*"
],
"options": {
"ignore": [
".backup",
".dist",
".git",
".phpdoc",
".phpunit*",
"composer.lock",
"node_modules",
"package-*.json"
]
}
},
"prod": {
"patterns": [
"**"
],
"options": {
"ignore": [
".*",
".backup",
".dev-notes",
".dist",
".git",
".phpdoc",
".phpunit*",
"assets-src",
"composer.lock",
"gulpfile.js",
"node_modules",
"node_tasks",
"package*.json",
"phpunit.xml*",
"tests"
]
}
}
},
"zipFilePrefix": "rd-events",
"zipOptions": {
"zipPrefix": "rd-events"
}
}
}

0 comments on commit 71e7a56

Please sign in to comment.