We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f045be9 commit 0904478Copy full SHA for 0904478
package.json
@@ -11,7 +11,7 @@
11
"type": "git",
12
"url": "git://github.com/getsentry/raven-js.git"
13
},
14
- "main": "dist/raven.js",
+ "main": "src/singleton.js",
15
"devDependencies": {
16
"chai": "~1.8.1",
17
"grunt": "^0.4.5",
src/singleton.js
@@ -1,3 +1,9 @@
1
+/**
2
+ * Enforces a single instance of the Raven client, and the
3
+ * main entry point for Raven. If you are a consumer of the
4
+ * Raven library, you SHOULD load this file (vs raven.js).
5
+ **/
6
+
7
'use strict';
8
9
var RavenConstructor = require('./raven');
0 commit comments