Skip to content

Commit e3724e3

Browse files
committed
cells in json files + only track cells.ts
Update .gitignore Update .gitignore Update .gitignore Update package.json
1 parent e11f0c1 commit e3724e3

File tree

3 files changed

+8
-5
lines changed

3 files changed

+8
-5
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,5 @@ lib_src/**/*
55
!lib_src/tsconfig.json
66
!lib_src/tslint.json
77
tsconfig.tsbuildinfo
8+
9+
!lib_src/misc/cells.ts

lib_src/tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,6 @@
3535

3636
"outDir": "../lib/misc"
3737
},
38-
"files": ["misc/colors.ts"],
38+
"files": ["misc/cells.ts"],
3939
"compileOnSave": false
4040
}

package.json

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,10 @@
2222
"repository": "https://github.com/JunoLab/atom-julia-client",
2323
"license": "MIT",
2424
"scripts": {
25-
"typescript": "tsc -p ./lib_src/tsconfig.json",
25+
"typescript": "(tsc -p ./lib_src/tsconfig.json) || echo done",
2626
"prettier_src": "prettier --write ./lib_src/**/*.ts",
27-
"prettier_out": "prettier --write ./lib/misc/colors.js",
28-
"build": "npm run typescript -s & npm run prettier_out -s",
27+
"prettier_out": "prettier --write ./lib/misc/cells.js",
28+
"build": "npm run typescript -s && npm run prettier_out -s",
2929
"lint": "eslint . --ext js,ts,coffee,json",
3030
"postinstall": "node script/postinstall.js"
3131
},
@@ -125,6 +125,7 @@
125125
"prettier": {
126126
"semi": false,
127127
"tabWidth": 2,
128-
"printWidth": 120
128+
"singleQuote": true,
129+
"printWidth": 80
129130
}
130131
}

0 commit comments

Comments
 (0)