Skip to content

Commit 1a22a46

Browse files
committed
Merge pull request #13 from NativeScript/package
fix npm package
2 parents 29dbc21 + 4904f54 commit 1a22a46

File tree

3 files changed

+25
-2
lines changed

3 files changed

+25
-2
lines changed

.gitattributes

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# Ensure that the shebang of our start script can be correctly interpreted
22

3-
bin/appbuilder.js eol=lf
3+
bin/nativescript.js eol=lf
44

.npmignore

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
.idea
2+
.gitattributes
3+
.gitmodules
4+
*.sublime-project
5+
lint.*
6+
.jshint*
7+
.npmignore
8+
*.tgz
9+
test-reports.xml
10+
for-developers.md
11+
prepublish.js
12+
Gruntfile.js
13+
BuildPackage.cmd
14+
tscommand.tmp.txt
15+
.tscache/
16+
17+
bin/nativescript
18+
bin/*.cmd
19+
20+
lib/**/*.ts
21+
lib/**/*.js.map
22+
23+
test/

Gruntfile.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ module.exports = function(grunt) {
9595
},
9696

9797
clean: {
98-
src: ["test/**/*.js*", "lib/**/*.js*", "*.tgz"]
98+
src: ["test/**/*.js*", "lib/**/*.js*", "!lib/common/vendor/*.js", "*.tgz"]
9999
}
100100
});
101101

0 commit comments

Comments
 (0)