-
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #696 from duncdrum/shared-resources
Shared resources
- Loading branch information
Showing
49 changed files
with
4,318 additions
and
1,740 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
generators/app/templates/specs/integration/landing_spec.js | ||
generators/app/templates/specs/mocha/rest_spec.js | ||
generators/app/templates/specs/xqs/xqSuite.js | ||
|
||
node_modules/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
{ | ||
"extends": "stylelint-config-standard" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,28 +1,32 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<project default="all" name="<%- title %>"> | ||
<description><%- desc %></description> | ||
<xmlproperty file="expath-pkg.xml"/> | ||
<property name="project.version" value="${package(version)}"/> | ||
<property name="project.app" value="<%- title %>"/> | ||
<property name="build.dir" value="build"/> | ||
<description><%- desc %></description> | ||
<xmlproperty file="expath-pkg.xml" /> | ||
<property name="project.version" value="${package(version)}" /> | ||
<property name="project.app" value="<%- title %>" /> | ||
<property name="build.dir" value="build" /> | ||
|
||
<!-- Start it --> | ||
<target name="init" description="create build directory"> | ||
<tstamp/> | ||
<mkdir dir="${build.dir}"/> | ||
</target> | ||
<!-- Start it --> | ||
<target name="init" description="create build directory"> | ||
<tstamp /> | ||
<mkdir dir="${build.dir}" /> | ||
<copy file="node_modules/bootstrap/dist/js/bootstrap.bundle.min.js" todir="resources/scripts" /> | ||
<copy file="node_modules/bootstrap/dist/js/bootstrap.bundle.min.js.map" todir="resources/scripts" /> | ||
<copy file="node_modules/bootstrap/dist/css/bootstrap.min.css" todir="resources/css" /> | ||
<copy file="node_modules/bootstrap/dist/css/bootstrap.min.css.map" todir="resources/css" /> | ||
</target> | ||
|
||
<!-- Dev build (includes everything unoptimized) --> | ||
<target name="dev" depends="init" description="compile all source files"> | ||
<zip basedir="." destfile="${build.dir}/${project.app}-${project.version}-dev.xar" excludes="**/${build.dir}/**, **/node_modules/**"/> | ||
</target> | ||
<!-- Dev build (includes everything unoptimized) --> | ||
<target name="dev" depends="init" description="compile all source files"> | ||
<zip basedir="." destfile="${build.dir}/${project.app}-${project.version}-dev.xar" excludes="**/${build.dir}/**, **/node_modules/**" /> | ||
</target> | ||
|
||
<!-- Release build --> | ||
<target name="deploy" depends="init" description="compile release build"> | ||
<zip basedir="." destfile="${build.dir}/${project.app}-${project.version}.xar" excludes="**/${build.dir}/**, .existdb.json, .yo-rc.json, **/node_modules/**, **/reports/**<% if (github) { -%><%- gitfiles -%><% } -%> <% if (docker) { -%><%- dockerfiles -%><% } -%>"/> | ||
</target> | ||
<!-- Release build --> | ||
<target name="deploy" depends="init" description="compile release build"> | ||
<zip basedir="." destfile="${build.dir}/${project.app}-${project.version}.xar" excludes="**/${build.dir}/**, .existdb.json, .yo-rc.json, **/node_modules/**, **/reports/**<% if (github) { -%><%- gitfiles -%><% } -%> <% if (docker) { -%><%- dockerfiles -%><% } -%>" /> | ||
</target> | ||
|
||
<target name="all" depends="dev, deploy"> | ||
<tstamp/> | ||
</target> | ||
<target name="all" depends="dev, deploy"> | ||
<tstamp /> | ||
</target> | ||
</project> |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file removed
BIN
-4.25 KB
generators/app/templates/exist-design/images/glyphicons-halflings.png
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.