Skip to content

Commit 498d8b1

Browse files
committed
chore: minor tweaks
1 parent 88323dc commit 498d8b1

File tree

4 files changed

+13
-10
lines changed

4 files changed

+13
-10
lines changed

react-native.config.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ module.exports = {
22
dependency: {
33
platforms: {
44
android: null,
5-
ios: null,
5+
ios: null,
66
},
77
},
8-
};
8+
};

src/create.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ export default async function create(argv: yargs.Arguments<any>) {
123123
{
124124
type: 'confirm',
125125
name: 'useCpp',
126-
message: 'Does your library use C++ code?',
126+
message: 'Do you want to use C++ code?',
127127
default: false,
128128
},
129129
])) as {
@@ -186,6 +186,7 @@ export default async function create(argv: yargs.Arguments<any>) {
186186
};
187187

188188
await copyDir(TEMPLATE, folder);
189+
189190
if (options.project.useCpp) {
190191
await copyDir(CPP_FILES, folder);
191192
}

templates/library/README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,10 @@ import <%= project.name %> from "<%= project.slug %>";
1818
const deviceName = await <%= project.name %>.getDeviceName();
1919
```
2020

21+
## Contributing
22+
23+
See the [contributing guide](CONTRIBUTING.md) to learn how to contribute to the repository and the development workflow.
24+
2125
## License
2226

2327
MIT

yarn.lock

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2283,13 +2283,6 @@ debug@^2.2.0, debug@^2.3.3, debug@^2.6.9:
22832283
dependencies:
22842284
ms "2.0.0"
22852285

2286-
debug@^3.2.6:
2287-
version "3.2.6"
2288-
resolved "https://registry.yarnpkg.com/debug/-/debug-3.2.6.tgz#e83d17de16d8a7efb7717edbe5fb10135eee629b"
2289-
integrity sha512-mel+jf7nrtEl5Pn1Qx46zARXKDpBbvzezse7p7LqINmdoIk8PYP5SySaxEmYv6TZ0JyEKA1hsCId6DIhgITtWQ==
2290-
dependencies:
2291-
ms "^2.1.1"
2292-
22932286
decamelize-keys@^1.0.0:
22942287
version "1.1.0"
22952288
resolved "https://registry.yarnpkg.com/decamelize-keys/-/decamelize-keys-1.1.0.tgz#d171a87933252807eb3cb61dc1c1445d078df2d9"
@@ -5345,6 +5338,11 @@ safe-buffer@~5.1.0, safe-buffer@~5.1.1:
53455338
resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d"
53465339
integrity sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==
53475340

5341+
safe-buffer@~5.2.0:
5342+
version "5.2.0"
5343+
resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.2.0.tgz#b74daec49b1148f88c64b68d49b1e815c1f2f519"
5344+
integrity sha512-fZEwUGbVl7kouZs1jCdMLdt95hdIv0ZeHg6L7qPeciMZhZ+/gdesW4wgTARkrFWEpspjEATAzUGPG8N2jJiwbg==
5345+
53485346
safe-regex@^1.1.0:
53495347
version "1.1.0"
53505348
resolved "https://registry.yarnpkg.com/safe-regex/-/safe-regex-1.1.0.tgz#40a3669f3b077d1e943d44629e157dd48023bf2e"

0 commit comments

Comments
 (0)