Change node-uuid to uuid, prepublish to prepare
This commit is contained in:
parent
e0dc5c313e
commit
c7a416a405
|
@ -181,7 +181,6 @@
|
||||||
"nginxbeautify": "^2.0.1",
|
"nginxbeautify": "^2.0.1",
|
||||||
"node-cljfmt": "0.5.3",
|
"node-cljfmt": "0.5.3",
|
||||||
"node-dir": "0.1.17",
|
"node-dir": "0.1.17",
|
||||||
"node-uuid": "1.4.8",
|
|
||||||
"open": "0.0.5",
|
"open": "0.0.5",
|
||||||
"prettydiff2": "^2.2.7",
|
"prettydiff2": "^2.2.7",
|
||||||
"pug-beautify": "^0.1.1",
|
"pug-beautify": "^0.1.1",
|
||||||
|
@ -197,6 +196,7 @@
|
||||||
"typescript-formatter": "5.2.0",
|
"typescript-formatter": "5.2.0",
|
||||||
"underscore-plus": "^1.6.6",
|
"underscore-plus": "^1.6.6",
|
||||||
"universal-analytics": "0.4.13",
|
"universal-analytics": "0.4.13",
|
||||||
|
"uuid": "^3.1.0",
|
||||||
"which": "1.2.14",
|
"which": "1.2.14",
|
||||||
"winston": "2.3.1",
|
"winston": "2.3.1",
|
||||||
"yaml-front-matter": "3.4.0"
|
"yaml-front-matter": "3.4.0"
|
||||||
|
@ -420,7 +420,7 @@
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"build-options": "node script/build-options.js",
|
"build-options": "node script/build-options.js",
|
||||||
"docs": "npm run build-options && coffee docs/",
|
"docs": "npm run build-options && coffee docs/",
|
||||||
"prepublish": "npm run docs",
|
"prepare": "npm run docs",
|
||||||
"lint": "coffeelint src/ spec/",
|
"lint": "coffeelint src/ spec/",
|
||||||
"code-docs": "codo && open docs/code/index.html",
|
"code-docs": "codo && open docs/code/index.html",
|
||||||
"test": "atom --test spec"
|
"test": "atom --test spec"
|
||||||
|
|
|
@ -260,8 +260,8 @@ module.exports = class Beautifiers extends EventEmitter
|
||||||
logger.info("Analytics is enabled.")
|
logger.info("Analytics is enabled.")
|
||||||
# Setup Analytics
|
# Setup Analytics
|
||||||
unless atom.config.get("atom-beautify.general._analyticsUserId")
|
unless atom.config.get("atom-beautify.general._analyticsUserId")
|
||||||
uuid = require("node-uuid")
|
uuidv4 = require("uuid/v4")
|
||||||
atom.config.set "atom-beautify.general._analyticsUserId", uuid.v4()
|
atom.config.set "atom-beautify.general._analyticsUserId", uuidv4()
|
||||||
# Setup Analytics User Id
|
# Setup Analytics User Id
|
||||||
userId = atom.config.get("atom-beautify.general._analyticsUserId")
|
userId = atom.config.get("atom-beautify.general._analyticsUserId")
|
||||||
@analytics ?= new ua(trackingId, userId, {
|
@analytics ?= new ua(trackingId, userId, {
|
||||||
|
|
Loading…
Reference in New Issue