forked from Symphony9/pickathing
-
Notifications
You must be signed in to change notification settings - Fork 0
/
npm-debug.log
125 lines (125 loc) · 9.59 KB
/
npm-debug.log
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
0 info it worked if it ends with ok
1 verbose cli [ 'C:\\Program Files\\nodejs\\node.exe',
1 verbose cli 'C:\\Program Files\\nodejs\\node_modules\\npm\\bin\\npm-cli.js',
1 verbose cli 'publish' ]
2 info using [email protected]
3 info using [email protected]
4 verbose publish [ '.' ]
5 silly cache add args [ '.', null ]
6 verbose cache add spec .
7 silly cache add parsed spec Result {
7 silly cache add raw: '.',
7 silly cache add scope: null,
7 silly cache add escapedName: null,
7 silly cache add name: null,
7 silly cache add rawSpec: '.',
7 silly cache add spec: 'C:\\Users\\vojtik\\projects\\pickathing',
7 silly cache add type: 'directory' }
8 verbose addLocalDirectory C:\Users\vojtik\AppData\Roaming\npm-cache\pickathing\0.8.0\package.tgz not in flight; packing
9 verbose correctMkdir C:\Users\vojtik\AppData\Roaming\npm-cache correctMkdir not in flight; initializing
10 info lifecycle [email protected]~prepublish: [email protected]
11 silly lifecycle [email protected]~prepublish: no script for prepublish, continuing
12 info lifecycle [email protected]~prepare: [email protected]
13 silly lifecycle [email protected]~prepare: no script for prepare, continuing
14 verbose tar pack [ 'C:\\Users\\vojtik\\AppData\\Roaming\\npm-cache\\pickathing\\0.8.0\\package.tgz',
14 verbose tar pack 'C:\\Users\\vojtik\\projects\\pickathing' ]
15 verbose tarball C:\Users\vojtik\AppData\Roaming\npm-cache\pickathing\0.8.0\package.tgz
16 verbose folder C:\Users\vojtik\projects\pickathing
17 verbose addLocalTarball adding from inside cache C:\Users\vojtik\AppData\Roaming\npm-cache\pickathing\0.8.0\package.tgz
18 verbose correctMkdir C:\Users\vojtik\AppData\Roaming\npm-cache correctMkdir not in flight; initializing
19 silly cache afterAdd [email protected]
20 verbose afterAdd C:\Users\vojtik\AppData\Roaming\npm-cache\pickathing\0.8.0\package\package.json not in flight; writing
21 verbose correctMkdir C:\Users\vojtik\AppData\Roaming\npm-cache correctMkdir not in flight; initializing
22 verbose afterAdd C:\Users\vojtik\AppData\Roaming\npm-cache\pickathing\0.8.0\package\package.json written
23 silly publish { name: 'pickathing',
23 silly publish version: '0.8.0',
23 silly publish description: 'Simple select written in Vanilla JS',
23 silly publish main: 'index.js',
23 silly publish scripts:
23 silly publish { test: 'echo "Error: no test specified" && exit 1',
23 silly publish build: 'buble src/pickathing.js > dist/pickathing.js && node-sass src/pickathing.scss dist/pickathing.css',
23 silly publish sass: 'node-sass src/pickathing.scss dist/pickathing.css',
23 silly publish js: 'buble src/pickathing.js > dist/pickathing.js' },
23 silly publish repository:
23 silly publish { type: 'git',
23 silly publish url: 'git+https://github.com/Symphony9/pickathing.git' },
23 silly publish keywords:
23 silly publish [ 'select',
23 silly publish 'selectjs',
23 silly publish 'vanillajs',
23 silly publish 'pickathing',
23 silly publish 'vojtechklos',
23 silly publish 'symphonyno9',
23 silly publish 'symphony' ],
23 silly publish author: { name: 'Vojtech Klos, Symphony no. 9' },
23 silly publish license: 'MIT',
23 silly publish bugs: { url: 'https://github.com/Symphony9/pickathing/issues' },
23 silly publish homepage: 'https://github.com/Symphony9/pickathing#readme',
23 silly publish devDependencies: { buble: '^0.13.2', 'node-sass': '^3.9.3' },
23 silly publish readme: '# pickathing\r\nSimple select written in Vanilla JS\r\n\r\nJust do `var select = new Pickathing(\'your-id\', true/false)`\r\n\r\ntrue /false is for the searchfield to show or not.\r\n\r\nIf you want multiple select it is easy! Just create normal multiple select:\r\n\r\n`<select multiple> ...`\r\n\r\nand initialization is the same as with normal select.\r\n\r\nThere is an option to filter one select by the other. To do that simply add options object as a third parameter like so:\r\n\r\n`new Pickathing(\'your-id\', true/false, {filterAttr: \'data-filter\', filter: select})`\r\n\r\nThe select needs to be instance of Pickathing class.\r\n\r\n## More docs:\r\n\r\n`new Pickathing(\'element-id\', hasSearch, options)`\r\n\r\n### Parameters\r\n\r\n#### element-id\r\n(String) Id of the select you want to activate\r\n\r\n#### hasSearch\r\n(Boolean) true/false determines if the searchfield is added or not\r\n\r\n#### options __(optional)__\r\n(Object) key: value pairs of other options\r\n\r\n##### options.filter\r\n(Instance) Instance of already initialized Pickathing select which gets filtered BY this select\r\n\r\n##### options.filterAttr\r\n(String) Attribute for which to look when filtering another select __(Has to be present if you use options.filter)__\r\n\r\n##### options.searchLabel\r\n(String) Sets the placeholder in the search field\r\n\r\n##### options.focusDelay\r\n(Number) Sets delay after the search field or the first item is selected. Should match transition of opening the dropdown. If you did not change transition in CSS you do not have to change this value\r\n\r\n### Methods\r\n\r\n#### Pickathing.reset(fireOnChange)\r\nResets the filter to initial state. Accepts `fireOnChange` (true or false) to trigger the onChange method or not\r\n\r\n#### Pickathing.onChange()\r\nYou can fire the onChange event manually with this method, or you can set what function should be executed\r\n```javascript\r\nlet select = new Pickathing(...);\r\nselect.onChange = () => {\r\n ...\r\n}\r\n```\r\nBy default this method is blank and does not do anything.\r\n\r\n### Events\r\n\r\n#### Pickathing.onChange\r\nBy default it is blank and serves as a method as well. Fire after the select has changed its value (e.g. clicking on option). Has to be set after initialization:\r\n```javascript\r\nlet select = new Pickathing(...);\r\nselect.onChange = () => {\r\n ...\r\n}\r\n```\r\n',
23 silly publish readmeFilename: 'README.md',
23 silly publish gitHead: '00e55719959b83c40803e247caf8d4f20ec0a79b',
23 silly publish _id: '[email protected]',
23 silly publish _shasum: '9af0d8c1cc606eee7b3dbfb45f4c08693e7de20a',
23 silly publish _from: '.' }
24 info lifecycle [email protected]~prepublishOnly: [email protected]
25 silly lifecycle [email protected]~prepublishOnly: no script for prepublishOnly, continuing
26 verbose getPublishConfig undefined
27 silly mapToRegistry name pickathing
28 silly mapToRegistry using default registry
29 silly mapToRegistry registry https://registry.npmjs.org/
30 silly mapToRegistry data Result {
30 silly mapToRegistry raw: 'pickathing',
30 silly mapToRegistry scope: null,
30 silly mapToRegistry escapedName: 'pickathing',
30 silly mapToRegistry name: 'pickathing',
30 silly mapToRegistry rawSpec: '',
30 silly mapToRegistry spec: 'latest',
30 silly mapToRegistry type: 'tag' }
31 silly mapToRegistry uri https://registry.npmjs.org/pickathing
32 verbose publish registryBase https://registry.npmjs.org/
33 silly publish uploading C:\Users\vojtik\AppData\Roaming\npm-cache\pickathing\0.8.0\package.tgz
34 verbose request uri https://registry.npmjs.org/pickathing
35 verbose request sending authorization for write operation
36 info attempt registry request try #1 at 14:12:52
37 verbose request using bearer token for auth
38 verbose request id 47440ebe6b3d5380
39 http request PUT https://registry.npmjs.org/pickathing
40 http 403 https://registry.npmjs.org/pickathing
41 verbose headers { 'content-type': 'application/json',
41 verbose headers 'cache-control': 'max-age=300',
41 verbose headers 'content-length': '95',
41 verbose headers 'accept-ranges': 'bytes',
41 verbose headers date: 'Fri, 24 Feb 2017 13:12:53 GMT',
41 verbose headers via: '1.1 varnish',
41 verbose headers connection: 'keep-alive',
41 verbose headers 'x-served-by': 'cache-fra1248-FRA',
41 verbose headers 'x-cache': 'MISS',
41 verbose headers 'x-cache-hits': '0',
41 verbose headers 'x-timer': 'S1487941972.168829,VS0,VE1337',
41 verbose headers vary: 'Accept-Encoding' }
42 verbose request invalidating C:\Users\vojtik\AppData\Roaming\npm-cache\registry.npmjs.org\pickathing on PUT
43 error publish Failed PUT 403
44 verbose stack Error: "You cannot publish over the previously published version 0.8.0." : pickathing
44 verbose stack at makeError (C:\Program Files\nodejs\node_modules\npm\node_modules\npm-registry-client\lib\request.js:302:12)
44 verbose stack at CachingRegistryClient.<anonymous> (C:\Program Files\nodejs\node_modules\npm\node_modules\npm-registry-client\lib\request.js:290:14)
44 verbose stack at Request._callback (C:\Program Files\nodejs\node_modules\npm\node_modules\npm-registry-client\lib\request.js:210:14)
44 verbose stack at Request.self.callback (C:\Program Files\nodejs\node_modules\npm\node_modules\request\request.js:186:22)
44 verbose stack at emitTwo (events.js:106:13)
44 verbose stack at Request.emit (events.js:191:7)
44 verbose stack at Request.<anonymous> (C:\Program Files\nodejs\node_modules\npm\node_modules\request\request.js:1081:10)
44 verbose stack at emitOne (events.js:96:13)
44 verbose stack at Request.emit (events.js:188:7)
44 verbose stack at IncomingMessage.<anonymous> (C:\Program Files\nodejs\node_modules\npm\node_modules\request\request.js:1001:12)
45 verbose statusCode 403
46 verbose pkgid pickathing
47 verbose cwd C:\Users\vojtik\projects\pickathing
48 error Windows_NT 10.0.14393
49 error argv "C:\\Program Files\\nodejs\\node.exe" "C:\\Program Files\\nodejs\\node_modules\\npm\\bin\\npm-cli.js" "publish"
50 error node v7.4.0
51 error npm v4.0.5
52 error code E403
53 error "You cannot publish over the previously published version 0.8.0." : pickathing
54 error If you need help, you may report this error at:
54 error <https://github.com/npm/npm/issues>
55 verbose exit [ 1, true ]