Skip to content

Commit d72534f

Browse files
committed
Exclude files that shouldn't go into packages
1 parent 77bffc3 commit d72534f

File tree

3 files changed

+18
-1
lines changed

3 files changed

+18
-1
lines changed

.npmignore

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
/src/main/resources/cucumber/formatter/bubble*
2+
/src/main/resources/cucumber/formatter/report.js

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"contributors": ["Cédric Lamalle <[email protected]>", "Julien Biezemans <[email protected]>"],
44
"name": "cucumber-html",
55
"description": "Cross platform HTML formatter for all implementations of Cucumber",
6-
"version": "0.0.0",
6+
"version": "1.0.0",
77
"homepage": "https://github.com/cucumber/cucumber-html",
88
"repository": {
99
"type": "git",

pom.xml

+15
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,19 @@
1111
<version>1.0.0-SNAPSHOT</version>
1212
<name>cucumber-html</name>
1313
<description>Cucumber-HTML is a cross-platform HTML formatter for all the Cucumber implementations.</description>
14+
<build>
15+
<plugins>
16+
<plugin>
17+
<groupId>org.apache.maven.plugins</groupId>
18+
<artifactId>maven-jar-plugin</artifactId>
19+
<version>2.3.2</version>
20+
<configuration>
21+
<excludes>
22+
<exclude>**/bubble*</exclude>
23+
<exclude>**/report.js</exclude>
24+
</excludes>
25+
</configuration>
26+
</plugin>
27+
</plugins>
28+
</build>
1429
</project>

0 commit comments

Comments
 (0)