Skip to content

Commit

Permalink
Merge pull request #94 from AthennaIO/develop
Browse files Browse the repository at this point in the history
Export types in main package entry
  • Loading branch information
jlenon7 committed Aug 9, 2023
2 parents 527501b + ddfa6dd commit eb32ef3
Show file tree
Hide file tree
Showing 14 changed files with 649 additions and 706 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,16 @@ jobs:
run: npm run build

- name: Copy README to build
run: cp README.md build/README.md
run: cp README.md build/README.md | true

- name: Copy LICENSE to build
run: cp LICENSE.md build/LICENSE.md
run: cp LICENSE.md build/LICENSE.md | true

- name: Copy templates to build
run: cp -r templates build/templates | true

- name: Copy configurer to build
run: cp -r configurer build/configurer | true

- name: Automatic GitHub Release
uses: justincy/github-action-npm-release@2.0.1
Expand Down
11 changes: 0 additions & 11 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,17 +9,6 @@ on:
- develop

jobs:
qodana:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- name: 'Qodana Scan'
uses: JetBrains/qodana-action@main
env:
QODANA_TOKEN: ${{ secrets.QODANA_TOKEN }}

linux:
runs-on: ubuntu-latest
strategy:
Expand Down
10 changes: 5 additions & 5 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -115,14 +115,14 @@ out
.pnp.*

# Compiled code
./dist
./build
dist
build
*.js
*.d.ts
*.js.map
!tests/Stubs/**/*.js
!tests/Stubs/**/*.d.ts
!tests/Stubs/**/*.js.map
!tests/stubs/**/*.js
!tests/stubs/**/*.d.ts
!tests/stubs/**/*.js.map

# IDE
.idea
Expand Down
Loading

0 comments on commit eb32ef3

Please sign in to comment.