Skip to content

Commit 84c2c22

Browse files
authored
Merge pull request inspirehep#38 from harunurhan/npm-ignore
add npmignore and change package name
2 parents 3a502ca + 86b82de commit 84c2c22

File tree

2 files changed

+54
-2
lines changed

2 files changed

+54
-2
lines changed

.npmignore

+53
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
#################
2+
## Misc
3+
#################
4+
**/.DS_Store
5+
node_modules/*
6+
npm-debug.log
7+
*.ts
8+
*.html
9+
*.scss
10+
!*.d.ts
11+
example
12+
.github
13+
coverage
14+
!dist
15+
gulpfile.js
16+
17+
#################
18+
## Test
19+
#################
20+
**/*.spec.js
21+
**/*.spec.ts
22+
protractor.conf.js
23+
webpack.config.js
24+
karma.conf.js
25+
e2e
26+
27+
#################
28+
## IDE
29+
#################
30+
.idea
31+
.project
32+
.settings
33+
nbproject
34+
manifest.mf
35+
build.xml
36+
.vscode
37+
38+
############
39+
## Windows
40+
############
41+
42+
# Windows image file caches
43+
Thumbs.db
44+
45+
# Folder config file
46+
Desktop.ini
47+
48+
############
49+
## Mac
50+
############
51+
52+
# Mac crap
53+
.DS_Store

package.json

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "ng2-multi-editor",
2+
"name": "ng2-multi-record-editor",
33
"version": "0.1.0",
44
"license": "MIT",
55
"scripts": {
@@ -15,7 +15,6 @@
1515
"version": "npm run build",
1616
"postversion": "git push upstream && git push upstream --tags"
1717
},
18-
"private": true,
1918
"dependencies": {
2019
"@angular/common": "^4.0.0",
2120
"@angular/compiler": "^4.0.0",

0 commit comments

Comments
 (0)