Skip to content

Commit

Permalink
Dump gulp, use package.json and npm
Browse files Browse the repository at this point in the history
  • Loading branch information
iMattPro committed May 29, 2021
1 parent 47c9b8d commit aa758fc
Show file tree
Hide file tree
Showing 11 changed files with 7,017 additions and 11,037 deletions.
9 changes: 4 additions & 5 deletions build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@
<delete file="${dir}/README.md" />
<delete file="${dir}/package.json" />
<delete file="${dir}/package-lock.json" />
<delete file="${dir}/gulpfile.js" />
</target>

<!--
Expand Down Expand Up @@ -79,7 +78,7 @@
</then>
</if>

<phingcall target="gulp-task">
<phingcall target="npm-build-task">
<property name="dir" value="${package-directory}" />
</phingcall>

Expand Down Expand Up @@ -125,10 +124,10 @@
</target>

<!--
Run gulp task
Run npm build task
-->
<target name="gulp-task" depends="npm-install">
<exec command="gulp build" dir="${package-directory}" passthru="true" checkreturn="true" />
<target name="npm-build-task" depends="npm-install">
<exec command="npm run-s" dir="${package-directory}" passthru="true" checkreturn="true" />
</target>

</project>
90 changes: 0 additions & 90 deletions gulpfile.js

This file was deleted.

Loading

0 comments on commit aa758fc

Please sign in to comment.