Skip to content

Commit

Permalink
Paving the way for CI
Browse files Browse the repository at this point in the history
  • Loading branch information
guybenron committed Sep 26, 2016
1 parent 5bbc96d commit 93eb6f0
Show file tree
Hide file tree
Showing 4 changed files with 44 additions and 1 deletion.
4 changes: 4 additions & 0 deletions .babelrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"presets": ["stage-2", "es2015"],
"plugins": ["transform-runtime"]
}
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
.babelrc
node_modules
dist
2 changes: 2 additions & 0 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
.gitignore
.babelrc
pom.xml
38 changes: 38 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">

<groupId>com.wixpress</groupId>
<artifactId>redux-saga-tester</artifactId>
<name>redux-saga-tester</name>
<description>Help test redux-saga sagas.</description>

<parent>
<groupId>com.wixpress.common</groupId>
<artifactId>wix-master-parent</artifactId>
<version>100.0.0-SNAPSHOT</version>
<relativePath />
</parent>

<modelVersion>4.0.0</modelVersion>
<version>1.0.0-SNAPSHOT</version>
<packaging>pom</packaging>

<developers>
<developer>
<name>Danny Leshem</name>
<email>[email protected]</email>
<roles>
<role>owner</role>
</roles>
</developer>
<developer>
<name>Yoav Amit</name>
<email>[email protected]</email>
<roles>
<role>owner</role>
</roles>
</developer>
</developers>
</project>

0 comments on commit 93eb6f0

Please sign in to comment.