remote5-gui 0.1.2 → 0.1.3

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/index.js CHANGED
@@ -1,7 +1,9 @@
1
1
  'use strict';
2
2
 
3
- if (process.env.NODE_ENV === 'production') {
4
- module.exports = require('./lib/wbase-0.1.2.js');
5
- } else {
6
- module.exports = require('./lib/wbase-0.1.2.js');
3
+ var app = {
4
+ test:function(){
5
+ return "test";
6
+ }
7
7
  }
8
+
9
+ module.exports = app;
@@ -174,7 +174,7 @@ var evt = {
174
174
 
175
175
  var R5;
176
176
  if (typeof exports != 'undefined')
177
- R5 = exports.R5 ? exports.R5 : (exports.R5 = {});
177
+ R5 = exports;
178
178
  else
179
179
  R5 = window.R5 ? window.R5 : (window.R5 = {});
180
180
 
package/package.json CHANGED
@@ -1,36 +1,14 @@
1
1
  {
2
2
  "name": "remote5-gui",
3
- "version": "0.1.2",
3
+ "version": "0.1.3",
4
4
  "description": "Remote5 GUI package.",
5
- "main": "index.js",
6
- "repository": {
7
- "type": "git",
8
- "url": "",
9
- "directory": "packages/remote5-gui"
10
- },
11
- "keywords": [
12
- "remote5"
13
- ],
5
+ "main": "./index.js",
14
6
  "license": "MIT",
15
- "homepage": "",
16
- "peerDependencies": {},
17
7
  "files": [
18
- "LICENSE",
19
- "README.md",
20
8
  "index.js",
21
9
  "lib/"
22
10
  ],
23
- "exports": {
24
- ".": {
25
- "default": "./index.js"
26
- },
27
- "./package.json": "./package.json"
28
- },
29
- "directories": {
30
- "lib": "lib"
31
- },
32
- "scripts": {
33
- "test": "echo \"Error: no test specified\" && exit 1"
34
- },
35
- "author": "Willy.Lee.KW"
11
+ "author": {
12
+ "name":"Willy.Lee.KW"
13
+ }
36
14
  }