我写了一个wordpress插件。 我需要为该发行版构建一个版本,并为我的网站构建另一个版本。
该插件包含一个config.ini
文件,用于启用/禁用诸如显示日志级别的选项。
[modules]
; To use features in the plugin
logs = true
; Logs module - to filter written logs
; Dependencies : logs
; Values allowed : 1 : ( all notices including debug logs), 2 : ( info, warnings and errors ), 3 : ( warnings and errors ), 4 : ( only errors )
level_logs = 1
目标是当我构建插件的版本时,将运行一个任务来编辑logs
和level_logs
值。
我正在寻找与gulp兼容的编辑器文件包,但我有点迷失,找不到它。
有人可以帮助我吗?