Skip to content

Commit

Permalink
Copy themes over from the main repo
Browse files Browse the repository at this point in the history
  • Loading branch information
SebastiaanYN committed Feb 18, 2020
0 parents commit 17bd3a6
Show file tree
Hide file tree
Showing 9 changed files with 1,759 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
module.exports = {
extends: '@syntek/syntek/node',
};
16 changes: 16 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: CI

on: [push, pull_request]

jobs:
test:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@master
- uses: actions/setup-node@v1
with:
node-version: 12
- run: npm ci
- run: npm run build
- run: npm run lint
31 changes: 31 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: Publish

on:
release:
types: [created]

jobs:
test:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@master
- uses: actions/setup-node@v1
with:
node-version: 12
- run: npm ci
- run: npm test

publish:
needs: test
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@master
- uses: actions/setup-node@v1
with:
node-version: 12
- run: npm ci
- run: npm publish --access public
env:
NODE_AUTH_TOKEN: ${{ secrets.npm_token }}
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
node_modules
dist
11 changes: 11 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# themes

Small package that exports available ace themes.

## Structure

```json
{
"solarized_dark": "Solarized Dark"
}
```
37 changes: 37 additions & 0 deletions names.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
Ambiance
Chaos
Chrome
Clouds
Clouds Midnight
Cobalt
Crimson Editor
Dawn
Dracula
Dreamweaver
Eclipse
Github
Gob
Gruvbox
Idle Fingers
iPlastic
Katzenmilch
KR Theme
Kuroir
Merbivore Soft
Merbivore
Mono Industrial
Monokai
Pastel on Dark
Solarized Dark
Solarized Light
SQLServer
Terminal
Textmate
Tomorrow Night Blue
Tomorrow Night Bright
Tomorrow Night Eighties
Tomorrow Night
Tomorrow
Twilight
Vibrant Ink
XCode
Loading

0 comments on commit 17bd3a6

Please sign in to comment.