Skip to content

Commit

Permalink
Merge pull request #2 from citkane/dev
Browse files Browse the repository at this point in the history
Bump to v0.1.11
  • Loading branch information
citkane authored Aug 25, 2022
2 parents 5cd556b + ada7bbb commit 6679a63
Show file tree
Hide file tree
Showing 13 changed files with 364 additions and 279 deletions.
3 changes: 3 additions & 0 deletions .eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@
"es6": true
},
"extends": ["eslint:recommended", "prettier"],
"rules": {
"indent": ["error", "tab", { "SwitchCase": 1 }]
},
"overrides": [
{
"files": ["**/*.{ts,tsx}"],
Expand Down
1 change: 1 addition & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
* text eol=lf
5 changes: 4 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,10 @@ on:

jobs:
build:
runs-on: ubuntu-latest
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
steps:
- uses: actions/checkout@v3
- name: install
Expand Down
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -83,3 +83,9 @@ and fix package.json with:
"typedoc": "^0.23.0" //or whatever version is relevant
}
```

<br /><br />

## Development Guidelines and howto's

Please refer to the [Wiki Page](https://github.com/citkane/typedoc-plugin-hot-dev/wiki/Development-Guidelines).
6 changes: 6 additions & 0 deletions build.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
const fs = require('fs-extra');

fs.copyFileSync('README.md', 'dist/README.md');
fs.copyFileSync('LICENSE.txt', 'dist/LICENSE.txt');
fs.copyFileSync('.npmignore', 'dist/.npmignore');
fs.copyFileSync('package.json', 'dist/package.json');
7 changes: 0 additions & 7 deletions build.sh

This file was deleted.

Loading

0 comments on commit 6679a63

Please sign in to comment.