@makano/rew 1.4.5 → 1.4.6

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.
@@ -63,10 +63,6 @@ module.exports.prepareContext = function (
63
63
  ...custom_context,
64
64
  Usage
65
65
  };
66
- globalEmitter.on('attach_name', (name, object) => {
67
- context[name] = object;
68
- });
69
- globalEmitter.on('detach_name', (name) => delete context[name]);
70
66
  std.prototype = { ns: (cb) => {
71
67
  return new (class extends STDNS {
72
68
  constructor(){
@@ -143,6 +139,10 @@ module.exports.prepareContext = function (
143
139
  })
144
140
  context.std = std;
145
141
  }
142
+ globalEmitter.on('attach_name', (name, object) => {
143
+ context[name] = object;
144
+ });
145
+ globalEmitter.on('detach_name', (name) => delete context[name]);
146
146
  if (!context.process)
147
147
  context.process = {
148
148
  argv: options.argv || process.argv,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@makano/rew",
3
- "version": "1.4.5",
3
+ "version": "1.4.6",
4
4
  "description": "A simple coffescript runtime and app manager",
5
5
  "main": "main.js",
6
6
  "directories": {