Skip to content

Commit

Permalink
Release 7.3.0
Browse files Browse the repository at this point in the history
RN project with expo modules
  • Loading branch information
hyochan committed Jan 21, 2022
1 parent 003504a commit bd09fa6
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 6 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
## 7.3.0

- React Native Project with [expo modules](https://docs.expo.dev/bare/installing-expo-modules)

## 7.2.0

- TS config fixes and organize packages

## 7.1.2

- Remove `import React` from all templates. From `Expo 44`, this can be removed.
Expand Down
11 changes: 9 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,15 @@
| 4.0.+ | 0.63.+ | 39 |
| 5.0.+ | 0.63.+ (web support) | 40 |
| 6.0.+ | 0.63.+ (atomic design) | 40 |
| 6.1.1+ | 0.63.+ (Removed atomic) | 40 |
| 6.1.1+ | 0.63.+ (removed atomic) | 40 |
| 6.2.+ | 0.64.+ | 40 |
| 6.3.+ (Emotion) | 0.64.+ (Emotion) | 41 |
| 6.3.+ (Emotion) | 0.64.+ (emotion) | 41 |
| 6.3.+ | 0.64.+ | 41 |
| 6.6.+ | 0.64.+ | 42 |
| 6.7.+ | 0.65.+ | 42 |
| 7.0.+ | 0.66.+ | 43 |
| 7.2.+ | 0.66.+ | 44 |
| 7.3.+ | 0.66.+ (expo modules) | 44 |

## Stacks we use

Expand All @@ -54,6 +60,7 @@
- [typescript](https://github.com/Microsoft/TypeScript)
- [ts-jest](https://github.com/kulshekhar/ts-jest)
- [prettier](https://prettier.io)
- [expo-modules](https://docs.expo.dev/bare/installing-expo-modules)
- [react-native-web](https://github.com/necolas/react-native-web)
- [localization (fbt)](https://github.com/facebook/fbt)

Expand Down
4 changes: 2 additions & 2 deletions bin/cb.ts
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ export const cbResultReactNative = (
shell.rm('-rf', `${nameOfApp}/.git`);
shell.rm('-rf', `${nameOfApp}/.circleci`);

// // ==> Android config
// ==> Android config
shell.cp(
`${nameOfApp}/metro.config.js`,
`${nameOfApp}/${nameOfApp}/metro.config.js`,
Expand Down Expand Up @@ -157,7 +157,7 @@ export const cbResultReactNative = (
});
}

childProcess.execSync(`cd ${nameOfApp} && npx react-native link`, {
childProcess.execSync(`npx install-expo-modules`, {
stdio: 'inherit',
});

Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "dooboo-cli",
"packageManager": "yarn@3.1.1",
"version": "7.2.0",
"version": "7.3.0",
"description": "React and react-native starter kit",
"bin": {
"dooboo": "lib/bin/root.js"
Expand Down Expand Up @@ -49,4 +49,4 @@
"publishConfig": {
"access": "public"
}
}
}

0 comments on commit bd09fa6

Please sign in to comment.