Skip to content

Commit b094845

Browse files
committed
package updates
1 parent 1eb7fde commit b094845

File tree

7 files changed

+23290
-22920
lines changed

7 files changed

+23290
-22920
lines changed

example/browser/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "@exceptionless/browser-sample",
2+
"name": "browser-sample",
33
"private": true,
44
"version": "2.0.0-pre",
55
"description": "Exceptionless Sample Browser App",

example/express/app.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import express from "express";
22
const app = express()
33

4-
import { Exceptionless } from "../../node_modules/@exceptionless/node/dist/index.js";
4+
import { Exceptionless } from "@exceptionless/node";
55

66
await Exceptionless.startup(c => {
77
c.apiKey = "LhhP1C9gijpSKCslHHCvwdSIz298twx271n1l6xw";

example/express/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "@exceptionless/express-sample",
2+
"name": "express-sample",
33
"private": true,
44
"version": "2.0.0-pre",
55
"description": "Exceptionless Sample Node App",

example/react-native/App.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
import React from 'react';
22
import { StyleSheet, Text, View } from 'react-native';
3+
import { Exceptionless } from "@exceptionless/browser";
34

45
export default function App() {
56
return (
67
<View style={styles.container}>
7-
<Text>Open up App.tsx to start working on your app!</Text>
8+
<Text>Exceptionless Example: { Exceptionless.config.serverUrl }</Text>
89
</View>
910
);
1011
}

example/react-native/package.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,17 @@
11
{
2+
"name": "react-native-sample",
23
"main": "index.js",
34
"scripts": {
45
"android": "react-native run-android",
56
"ios": "react-native run-ios",
67
"web": "expo start --web",
78
"start": "react-native start",
9+
"build": "",
10+
"watch": "",
811
"test": "jest"
912
},
1013
"dependencies": {
14+
"@exceptionless/browser": "2.0.0-pre",
1115
"expo": "~40.0.0",
1216
"expo-splash-screen": "~0.8.0",
1317
"expo-updates": "~0.4.0",

0 commit comments

Comments
 (0)