Skip to content

Commit

Permalink
Merge pull request #1 from SchematicHQ/custom-code
Browse files Browse the repository at this point in the history
Custom code
  • Loading branch information
bpapillon authored Aug 6, 2024
2 parents 2616e2b + 3a01a9f commit 44cce88
Show file tree
Hide file tree
Showing 909 changed files with 28,507 additions and 27,618 deletions.
15 changes: 15 additions & 0 deletions .fernignore
Original file line number Diff line number Diff line change
@@ -1 +1,16 @@
# Specify files that shouldn't be modified by Fern

.prettierrc
.husky/pre-commit
README.md
generate-version.js
package.json
src/cache.test.ts
src/cache.ts
src/core/fetcher/custom.ts
src/events.test.ts
src/events.ts
src/index.ts
src/logger.ts
src/version.ts
src/wrapper.ts
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,10 @@ jobs:
uses: actions/setup-node@v3

- name: Compile
run: yarn && yarn test
run: yarn && yarn test

publish:
needs: [ compile, test ]
needs: [compile, test]
if: github.event_name == 'push' && contains(github.ref, 'refs/tags/')
runs-on: ubuntu-latest
steps:
Expand All @@ -54,4 +54,4 @@ jobs:
npm publish --access public
fi
env:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
1 change: 1 addition & 0 deletions .husky/pre-commit
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
yarn ts-version
3 changes: 2 additions & 1 deletion .prettierrc.yml
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
tabWidth: 4
printWidth: 120
singleQuote: false
trailingComma: "all"
Loading

0 comments on commit 44cce88

Please sign in to comment.