Skip to content

Commit

Permalink
style: relocated hooks
Browse files Browse the repository at this point in the history
  • Loading branch information
ethanneff committed Mar 6, 2017
1 parent 006f33a commit fbce203
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions plugin.template.xml
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,8 @@ SOFTWARE.
</engines>

<!-- Hooks -->
<hook src="src/scripts/beforePluginInstall.js" type="before_plugin_install" />
<hook src="src/scripts/afterPrepare.js" type="after_prepare" />
<hook src="src/scripts/hooks/beforePluginInstall.js" type="before_plugin_install" />
<hook src="src/scripts/hooks/afterPrepare.js" type="after_prepare" />

<!-- JavaScript -->
<js-module src="src/branch.js" name="Branch">
Expand Down
4 changes: 2 additions & 2 deletions plugin.xml
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,8 @@ SOFTWARE.
</engines>

<!-- Hooks -->
<hook src="src/scripts/beforePluginInstall.js" type="before_plugin_install" />
<hook src="src/scripts/afterPrepare.js" type="after_prepare" />
<hook src="src/scripts/hooks/beforePluginInstall.js" type="before_plugin_install" />
<hook src="src/scripts/hooks/afterPrepare.js" type="after_prepare" />

<!-- JavaScript -->
<js-module src="src/branch.js" name="Branch">
Expand Down
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion src/scripts/sdk/configXml.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// properties
'use strict'
var path = require('path')
var xmlHelper = require('./xmlHelper.js')
var xmlHelper = require('../lib/xmlHelper.js')

// entry
module.exports = {
Expand Down

0 comments on commit fbce203

Please sign in to comment.