Skip to content

Commit

Permalink
fix: empty
Browse files Browse the repository at this point in the history
  • Loading branch information
maxgfr committed Dec 1, 2022
1 parent 5433b9a commit 54f68be
Show file tree
Hide file tree
Showing 8 changed files with 2,418 additions and 54 deletions.
4 changes: 0 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,3 @@ jobs:
run: yarn
- name: Build
run: yarn build
- name: Build SWC
run: yarn build:swc
- name: Build storybook
run: yarn storybook:build
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -62,3 +62,6 @@ buck-out/
# Ruby / CocoaPods
/ios/Pods/
/vendor/bundle/

# Dist
/dist
18 changes: 18 additions & 0 deletions .releaserc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
{
"branches": [
"+([0-9])?(.{+([0-9]),x}).x",
"main",
"next",
"next-major",
{"name": "beta", "prerelease": true},
{"name": "alpha", "prerelease": true}
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/npm",
"@semantic-release/github",
"@semantic-release/git",
"@semantic-release/changelog"
]
}
1 change: 0 additions & 1 deletion _node-version

This file was deleted.

1 change: 0 additions & 1 deletion _ruby-version

This file was deleted.

14 changes: 11 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
{
"name": "typescript-react-native-lib",
"version": "0.0.1",
"name": "rn-simple-modal",
"version": "1.0.0",
"private": true,
"scripts": {
"build": "tsc",
"build:watch": "tsc -w",
"test": "jest",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx"
"lint": "eslint ./src --ext .js,.jsx,.ts,.tsx",
"release": "semantic-release"
},
"dependencies": {
"react": "18.1.0",
Expand All @@ -16,6 +17,12 @@
"@babel/core": "^7.12.9",
"@babel/runtime": "^7.12.5",
"@react-native-community/eslint-config": "^2.0.0",
"@semantic-release/changelog": "^6.0.2",
"@semantic-release/commit-analyzer": "^9.0.2",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^8.0.7",
"@semantic-release/npm": "^9.0.1",
"@semantic-release/release-notes-generator": "^10.0.3",
"@tsconfig/react-native": "^2.0.2",
"@types/jest": "^26.0.23",
"@types/react": "^18.0.21",
Expand All @@ -28,6 +35,7 @@
"jest": "^26.6.3",
"metro-react-native-babel-preset": "0.72.3",
"react-test-renderer": "18.1.0",
"semantic-release": "^19.0.5",
"typescript": "^4.8.3"
},
"jest": {
Expand Down
7 changes: 4 additions & 3 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
// prettier-ignore
{
"extends": "@tsconfig/react-native/tsconfig.json", /* Recommended React Native TSConfig base */
"extends": "@tsconfig/react-native/tsconfig.json" /* Recommended React Native TSConfig base */,
"include": ["src/**/*"],
"compilerOptions": {
/* Visit https://aka.ms/tsconfig.json to read more about this file */

/* Completeness */
"skipLibCheck": true /* Skip type checking all .d.ts files. */
"skipLibCheck": true /* Skip type checking all .d.ts files. */,
"outDir": "./dist"
}
}
Loading

0 comments on commit 54f68be

Please sign in to comment.