Skip to content

Commit 17bd3a6

Browse files
committed
Copy themes over from the main repo
0 parents  commit 17bd3a6

File tree

9 files changed

+1759
-0
lines changed

9 files changed

+1759
-0
lines changed

.eslintrc.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
module.exports = {
2+
extends: '@syntek/syntek/node',
3+
};

.github/workflows/ci.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: CI
2+
3+
on: [push, pull_request]
4+
5+
jobs:
6+
test:
7+
runs-on: ubuntu-latest
8+
9+
steps:
10+
- uses: actions/checkout@master
11+
- uses: actions/setup-node@v1
12+
with:
13+
node-version: 12
14+
- run: npm ci
15+
- run: npm run build
16+
- run: npm run lint

.github/workflows/publish.yml

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
name: Publish
2+
3+
on:
4+
release:
5+
types: [created]
6+
7+
jobs:
8+
test:
9+
runs-on: ubuntu-latest
10+
11+
steps:
12+
- uses: actions/checkout@master
13+
- uses: actions/setup-node@v1
14+
with:
15+
node-version: 12
16+
- run: npm ci
17+
- run: npm test
18+
19+
publish:
20+
needs: test
21+
runs-on: ubuntu-latest
22+
23+
steps:
24+
- uses: actions/checkout@master
25+
- uses: actions/setup-node@v1
26+
with:
27+
node-version: 12
28+
- run: npm ci
29+
- run: npm publish --access public
30+
env:
31+
NODE_AUTH_TOKEN: ${{ secrets.npm_token }}

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
node_modules
2+
dist

README.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# themes
2+
3+
Small package that exports available ace themes.
4+
5+
## Structure
6+
7+
```json
8+
{
9+
"solarized_dark": "Solarized Dark"
10+
}
11+
```

names.txt

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
Ambiance
2+
Chaos
3+
Chrome
4+
Clouds
5+
Clouds Midnight
6+
Cobalt
7+
Crimson Editor
8+
Dawn
9+
Dracula
10+
Dreamweaver
11+
Eclipse
12+
Github
13+
Gob
14+
Gruvbox
15+
Idle Fingers
16+
iPlastic
17+
Katzenmilch
18+
KR Theme
19+
Kuroir
20+
Merbivore Soft
21+
Merbivore
22+
Mono Industrial
23+
Monokai
24+
Pastel on Dark
25+
Solarized Dark
26+
Solarized Light
27+
SQLServer
28+
Terminal
29+
Textmate
30+
Tomorrow Night Blue
31+
Tomorrow Night Bright
32+
Tomorrow Night Eighties
33+
Tomorrow Night
34+
Tomorrow
35+
Twilight
36+
Vibrant Ink
37+
XCode

0 commit comments

Comments
 (0)