@nx/expo 17.3.1 → 17.3.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nx/expo",
3
- "version": "17.3.1",
3
+ "version": "17.3.2",
4
4
  "private": false,
5
5
  "description": "The Expo Plugin for Nx contains executors and generators for managing and developing an expo application within your workspace. For example, you can directly build for different target platforms as well as generate projects and publish your code.",
6
6
  "keywords": [
@@ -34,14 +34,14 @@
34
34
  "tslib": "^2.3.0",
35
35
  "tsconfig-paths": "^4.1.2",
36
36
  "tsconfig-paths-webpack-plugin": "^4.0.0",
37
- "@nx/detox": "17.3.1",
38
- "@nx/devkit": "17.3.1",
39
- "@nx/jest": "17.3.1",
40
- "@nx/js": "17.3.1",
41
- "@nx/eslint": "17.3.1",
42
- "@nx/react": "17.3.1",
43
- "@nx/webpack": "17.3.1",
44
- "@nrwl/expo": "17.3.1"
37
+ "@nx/detox": "17.3.2",
38
+ "@nx/devkit": "17.3.2",
39
+ "@nx/jest": "17.3.2",
40
+ "@nx/js": "17.3.2",
41
+ "@nx/eslint": "17.3.2",
42
+ "@nx/react": "17.3.2",
43
+ "@nx/webpack": "17.3.2",
44
+ "@nrwl/expo": "17.3.2"
45
45
  },
46
46
  "peerDependencies": {
47
47
  "expo": ">= 49.0.0",
@@ -475,6 +475,30 @@ export const App = () => {
475
475
  ui/src/lib/button
476
476
  </Text>
477
477
  </View>
478
+ <View style={styles.listItem}>
479
+ <Svg
480
+ width={24}
481
+ height={24}
482
+ stroke="#000000"
483
+ fill="none"
484
+ viewBox="0 0 24 24"
485
+ >
486
+ <Path
487
+ strokeLinecap="round"
488
+ strokeLinejoin="round"
489
+ strokeWidth="2"
490
+ d="M8 9l3 3-3 3m5 0h3M5 20h14a2 2 0 002-2V6a2 2 0 00-2-2H5a2 2 0 00-2 2v12a2 2 0 002 2z"
491
+ />
492
+ </Svg>
493
+ <View style={styles.listItemTextContainer}>
494
+ <Text style={styles.textSm}>
495
+ View project details
496
+ </Text>
497
+ </View>
498
+ </View>
499
+ <View style={[styles.codeBlock, styles.marginBottomLg]}>
500
+ <Text style={[styles.textXS, styles.monospace]}>nx show project <%= displayName %> --web</Text>
501
+ </View>
478
502
  <View style={styles.listItem}>
479
503
  <Svg
480
504
  width={24}