Skip to content

Commit

Permalink
fix: config dist for uploading
Browse files Browse the repository at this point in the history
  • Loading branch information
frankpagan committed Nov 7, 2023
1 parent 67955e7 commit 16ec524
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions CoCreate.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,6 @@ module.exports = {
"directories": [
{
"entry": "./docs",
"exclude": [
"demo"
],
"array": "files",
"object": {
"name": "{{name}}",
Expand All @@ -16,27 +13,30 @@ module.exports = {
"*"
],
"directory": "docs",
"path": "/CoCreateCSS/docs/{{path}}",
"path": "/docs/CoCreateCSS/{{path}}",
"pathname": "{{pathname}}",
"content-type": "{{content-type}}",
"public": "true"
}
},
{
"entry": "./docs",
"entry": "./dist",
"exclude": [
".txt", ".js"
],
"array": "files",
"object": {
"name": "{{name}}",
"src": "{{source}}",
"host": [
"*"
],
"directory": "docs",
"path": "/CoCreateCSS/docs/{{path}}",
"directory": "{{directory}}",
"path": "{{path}}",
"pathname": "{{pathname}}",
"content-type": "{{content-type}}",
"public": "true"
}
}
},
]
}

0 comments on commit 16ec524

Please sign in to comment.