このブログは、旧・はてなダイアリー「檜山正幸のキマイラ飼育記 メモ編」(http://d.hatena.ne.jp/m-hiyama-memo/)のデータを移行・保存したものであり、今後(2019年1月以降)更新の予定はありません。

今後の更新は、新しいブログ http://m-hiyama-memo.hatenablog.com/ で行います。

配布パッケージに関するに概念 6

files.json の例を幾つか挙げる。


{

"schemata@global": {
"baseDir" : "../../global/schemata/",
"files" : ["/webreq.py", "webresp.py"]
},

"commands@global": {
"baseDir": "../../glbal/commands/",
"files": ["/webreq.casm", "/webresp.casm"]
}
}


{
"lib@caty": {
"baseDir" : "../lib/",
"files" : ["/caplib.py"]
},
"tools@caty": {
"baseDir": "../tools/",
"files": ["/cap", "/cap.bat", "/cap.py", "/catalog.json", "/local-catalog.json"]
}
}


{
"home@wiki" : {
"baseDir" : "./",
"pattern" : "/**",
"excludePattern" : ["**.tmp", "**.log", "**.orig"]
},

"pub@wiki" : {
"baseDir" : "./pub/",
"pattern" : "**",
"excludePattern" : ["**.tmp", "**.orig"]
},
"include@wiki" : {
"baseDir" : "./include/",
"pattern" : "**",
"excludePattern" : ["**.tmp", "**.orig"]
},
"actions@wiki" : {
"baseDir" : "./actions/",
"pattern" : "**",
"excludePattern" : ["**.tmp", "**.orig"]
},
"schemata@wiki" : {
"baseDir" : "./schemata/",
"pattern" : "**",
"excludePattern" : ["**.tmp", "**.orig"]
},
"scripts@wiki" : {
"baseDir" : "./scripts/",
"pattern" : "*.caty"
},

"messages@wiki" : {
"baseDir" : "./messages/",
"pattern" : "*.xjson"
}
}

ファイルセットを記述するための項目は:

  1. baseDir
  2. files
  3. pattern
  4. excludePattern
  5. excludeFiles

計算は、files + (pattern - excludePattern) - excludeFiles