Skip to content
This repository was archived by the owner on Dec 16, 2022. It is now read-only.

Commit aa061f8

Browse files
feat(templates): Add iOS template (#69)
* feat(tasks): Support iOS * feat(template): Add iOS template * feat(template): Update iOS template * test(snapshots): Update iOS snapshots * chore(scripts): Add e2e installs script * test(installs): Test installation with Cocoapods * build(travis): Install CocoaPods * feat: Allow `libraryName` omission in templates * chore(scripts): Remove unnecessary quotes in Jest scripts
1 parent b9d136c commit aa061f8

File tree

28 files changed

+1680
-41
lines changed

28 files changed

+1680
-41
lines changed

.travis.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ cache:
88
before_install:
99
- curl -o- -L yarnpkg.com/install.sh | bash -s -- --version 1.7.0
1010
- export PATH=$HOME/.yarn/bin:$PATH
11+
- gem install cocoapods
1112
script:
1213
- "${SCRIPT}"
1314
env:

package.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,9 @@
1212
"scripts": {
1313
"start": "node src/cli/index.js",
1414
"test": "jest ./src",
15-
"test:e2e:templates": "jest './scripts/e2e-templates.test.js'",
16-
"test:e2e": "jest './scripts/e2e-*'",
15+
"test:e2e:installs": "jest ./scripts/e2e-installs.test.js",
16+
"test:e2e:templates": "jest ./scripts/e2e-templates.test.js",
17+
"test:e2e": "jest ./scripts/e2e-*",
1718
"lint": "eslint .",
1819
"lint:fix": "yarn lint --fix",
1920
"format": "prettier --write *.{js,md,json}",

0 commit comments

Comments
 (0)