forked from kinda/react-loader
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnpm-debug.log
More file actions
129 lines (129 loc) · 11.1 KB
/
npm-debug.log
File metadata and controls
129 lines (129 loc) · 11.1 KB
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
126
127
128
129
0 info it worked if it ends with ok
1 verbose cli [ '/usr/local/Cellar/node/5.9.1/bin/node',
1 verbose cli '/usr/local/bin/npm',
1 verbose cli 'publish' ]
2 info using npm@3.7.3
3 info using node@v5.9.1
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 name: null,
7 silly cache add rawSpec: '.',
7 silly cache add spec: '/Users/mikekauffman/projects/react-loader',
7 silly cache add type: 'directory' }
8 verbose addLocalDirectory /Users/mikekauffman/.npm/react-loader/2.2.0/package.tgz not in flight; packing
9 verbose correctMkdir /Users/mikekauffman/.npm correctMkdir not in flight; initializing
10 info lifecycle react-loader@2.2.0~prepublish: react-loader@2.2.0
11 silly lifecycle react-loader@2.2.0~prepublish: no script for prepublish, continuing
12 verbose tar pack [ '/Users/mikekauffman/.npm/react-loader/2.2.0/package.tgz',
12 verbose tar pack '/Users/mikekauffman/projects/react-loader' ]
13 verbose tarball /Users/mikekauffman/.npm/react-loader/2.2.0/package.tgz
14 verbose folder /Users/mikekauffman/projects/react-loader
15 verbose addLocalTarball adding from inside cache /Users/mikekauffman/.npm/react-loader/2.2.0/package.tgz
16 verbose correctMkdir /Users/mikekauffman/.npm correctMkdir not in flight; initializing
17 silly cache afterAdd react-loader@2.2.0
18 verbose afterAdd /Users/mikekauffman/.npm/react-loader/2.2.0/package/package.json not in flight; writing
19 verbose correctMkdir /Users/mikekauffman/.npm correctMkdir not in flight; initializing
20 verbose afterAdd /Users/mikekauffman/.npm/react-loader/2.2.0/package/package.json written
21 silly publish { name: 'react-loader',
21 silly publish description: 'React component that displays a spinner via spin.js until your component is loaded',
21 silly publish version: '2.2.0',
21 silly publish main: 'lib/react-loader.js',
21 silly publish scripts:
21 silly publish { build: 'jsx -x jsx lib lib',
21 silly publish 'test-prepare': 'browserify -e test/spec/suite.js -t reactify -o test/bundle.js',
21 silly publish 'test-run': 'mocha-phantomjs test/index.html',
21 silly publish test: 'npm run build && npm run test-prepare && npm run test-run' },
21 silly publish repository:
21 silly publish { type: 'git',
21 silly publish url: 'git+https://github.com/quickleft/react-loader.git' },
21 silly publish keywords:
21 silly publish [ 'react',
21 silly publish 'component',
21 silly publish 'react-component',
21 silly publish 'loader',
21 silly publish 'spinner',
21 silly publish 'spin',
21 silly publish 'spinjs',
21 silly publish 'spin.js' ],
21 silly publish author:
21 silly publish { name: 'Matt Huggins',
21 silly publish email: 'mhuggins@quickleft.com',
21 silly publish url: 'http://quickleft.com' },
21 silly publish license: 'MIT',
21 silly publish bugs: { url: 'https://github.com/quickleft/react-loader/issues' },
21 silly publish homepage: 'https://github.com/quickleft/react-loader',
21 silly publish peerDependencies:
21 silly publish { react: '^0.14.0 || ^15.0.0',
21 silly publish 'react-dom': '^0.14.0 || ^15.0.0' },
21 silly publish dependencies: { 'spin.js': '2.x' },
21 silly publish devDependencies:
21 silly publish { browserify: '^5.9.1',
21 silly publish chai: '^1.9.1',
21 silly publish 'es5-shim': '^4.0.1',
21 silly publish mocha: '^2.4.5',
21 silly publish 'mocha-phantomjs': '^4.0.2',
21 silly publish react: '^15.0.0',
21 silly publish 'react-dom': '^15.0.0',
21 silly publish 'react-tools': '^0.13.3',
21 silly publish reactify: '^1.1.1' },
21 silly publish readme: '# react-loader [](https://circleci.com/gh/quickleft/react-loader)\n\nreact-loader provides your [React.js](http://facebook.github.io/react/)\ncomponent a simple mechanism for rendering a loading spinner (via\n[spin.js](http://fgnass.github.io/spin.js/)) while data is loading, such as an\nasynchronous request to load data for a view.\n\n> Important Note: The 2.x branch is compatible with React 1.4 and higher. If\n> you\'re working with an older version of React, please use the 1.x branch.\n\n## Installation\n\nreact-loader is available through both [Bower](http://bower.io/) and\n[npm](https://www.npmjs.org/) via:\n\n npm install react-loader\n\nor:\n\n bower install react-loader\n\nBe sure to include the `--save` option to add this as a dependency in your\napplication\'s `package.json` or `bower.json` file.\n\n## Usage\n\nWrap the Loader component around your loading content within your React\ncomponent\'s `render` function.\n\n```jsx\n/** @jsx React.DOM */\nvar Loader = require(\'react-loader\');\n\nvar MyComponent = React.createClass({\n getInitialState: function () {\n return { loaded: false, profile: null };\n },\n\n componentDidMount: function () {\n new Profile({ id: this.props.id }).fetch({\n success: this.onSuccess,\n error: this.onError\n })\n },\n\n onSuccess: function (profile) {\n this.setState({ profile: profile, loaded: true });\n },\n\n onError: function (err) {\n // error handling goes here\n },\n\n render: function () {\n return (\n <Container>\n <Header>My Profile</Header>\n <Loader loaded={this.state.loaded}>\n <Profile model={this.state.profile} />\n </Loader>\n </Container>\n );\n }\n});\n```\n\n### Options\n\nOptions can be passed to the Loader component as properties. The Loader accepts\na `loaded` boolean that specified whether the spinner or content should be\ndisplayed, defaulting to `false`. It also accepts a `component` property to\nspecify the DOM node, defaulting to `"div"`. Additionally, all options\navailable to spin.js are available to this component in two ways.\n\n1. First, you can pass each option onto the loader as individual properties:\n\n```jsx\n<Loader loaded={false} lines={13} length={20} width={10} radius={30}\n corners={1} rotate={0} direction={1} color="#000" speed={1}\n trail={60} shadow={false} hwaccel={false} className="spinner"\n zIndex={2e9} top="50%" left="50%" scale={1.00}\n loadedClassName="loadedContent" />\n```\n\n2. Alternatively, you can use supply an object using the `options` key:\n\n```jsx\nvar options = {\n lines: 13,\n length: 20,\n width: 10,\n radius: 30,\n corners: 1,\n rotate: 0,\n direction: 1,\n color: \'#000\',\n speed: 1,\n trail: 60,\n shadow: false,\n hwaccel: false,\n zIndex: 2e9,\n top: \'50%\',\n left: \'50%\',\n scale: 1.00\n};\n\n<Loader loaded={false} options={options} className="spinner" />\n```\n\n### Styling\n\nThe loader is rendered inside a DIV element (unless otherwise specified via the\n`component` property mentioned earlier) with class "loader". A simple solution\nfor rendering the spinner on the center of your screen would be to use some CSS\nlike the following:\n\n```css\n.loader {\n position: fixed;\n top: 0;\n right: 0;\n bottom: 0;\n left: 0;\n background: white;\n z-index: 9999;\n}\n```\n\nOnce the content is loaded and the spinner is removed, the DOM node is given a\nclass of "loadedContent" (which is customizable by specifying the\n`loadedClassName` property).\n\n## Contributing\n\nTo contribute:\n\n1. Fork it\n2. Create your feature branch (`git checkout -b my-new-feature`)\n3. Add your changes to the `lib/react-loader.jsx` file along with associated\n tests under `test/spec/react-loader-test.js`.\n4. Build any JSX changes to JS (`npm run build`), and run tests (`npm test`).\n5. Commit your changes (`git commit -am \'Added some feature\'`)\n6. Push to the branch (`git push origin my-new-feature`)\n7. Create new Pull Request\n\n## License\n\nreact-loader is released under the [MIT License](http://opensource.org/licenses/MIT).\n',
21 silly publish readmeFilename: 'README.md',
21 silly publish gitHead: '066df1a3e460bdad1515c07f38e4d16e5bbd456c',
21 silly publish _id: 'react-loader@2.2.0',
21 silly publish _shasum: 'b79c7553cdff0d57ff7214b88610c1ea0c8073b9',
21 silly publish _from: '.' }
22 verbose getPublishConfig undefined
23 silly mapToRegistry name react-loader
24 silly mapToRegistry using default registry
25 silly mapToRegistry registry https://registry.npmjs.org/
26 silly mapToRegistry uri https://registry.npmjs.org/react-loader
27 verbose publish registryBase https://registry.npmjs.org/
28 silly publish uploading /Users/mikekauffman/.npm/react-loader/2.2.0/package.tgz
29 verbose request uri https://registry.npmjs.org/react-loader
30 verbose request sending authorization for write operation
31 info attempt registry request try #1 at 1:27:20 PM
32 verbose request using bearer token for auth
33 verbose request id 317f61ad2fed7270
34 http request PUT https://registry.npmjs.org/react-loader
35 http 403 https://registry.npmjs.org/react-loader
36 verbose headers { 'content-type': 'application/json',
36 verbose headers 'cache-control': 'max-age=300',
36 verbose headers 'content-length': '95',
36 verbose headers 'accept-ranges': 'bytes',
36 verbose headers date: 'Tue, 12 Apr 2016 19:27:22 GMT',
36 verbose headers via: '1.1 varnish',
36 verbose headers connection: 'keep-alive',
36 verbose headers 'x-served-by': 'cache-dfw1830-DFW',
36 verbose headers 'x-cache': 'MISS',
36 verbose headers 'x-cache-hits': '0',
36 verbose headers 'x-timer': 'S1460489240.752205,VS0,VE1266',
36 verbose headers vary: 'Accept-Encoding' }
37 verbose request invalidating /Users/mikekauffman/.npm/registry.npmjs.org/react-loader on PUT
38 error publish Failed PUT 403
39 verbose stack Error: "You cannot publish over the previously published version 2.2.0." : react-loader
39 verbose stack at makeError (/usr/local/lib/node_modules/npm/node_modules/npm-registry-client/lib/request.js:264:12)
39 verbose stack at CachingRegistryClient.<anonymous> (/usr/local/lib/node_modules/npm/node_modules/npm-registry-client/lib/request.js:252:14)
39 verbose stack at Request._callback (/usr/local/lib/node_modules/npm/node_modules/npm-registry-client/lib/request.js:172:14)
39 verbose stack at Request.self.callback (/usr/local/lib/node_modules/npm/node_modules/request/request.js:199:22)
39 verbose stack at emitTwo (events.js:100:13)
39 verbose stack at Request.emit (events.js:185:7)
39 verbose stack at Request.<anonymous> (/usr/local/lib/node_modules/npm/node_modules/request/request.js:1036:10)
39 verbose stack at emitOne (events.js:95:20)
39 verbose stack at Request.emit (events.js:182:7)
39 verbose stack at IncomingMessage.<anonymous> (/usr/local/lib/node_modules/npm/node_modules/request/request.js:963:12)
40 verbose statusCode 403
41 verbose pkgid react-loader
42 verbose cwd /Users/mikekauffman/projects/react-loader
43 error Darwin 15.4.0
44 error argv "/usr/local/Cellar/node/5.9.1/bin/node" "/usr/local/bin/npm" "publish"
45 error node v5.9.1
46 error npm v3.7.3
47 error code E403
48 error "You cannot publish over the previously published version 2.2.0." : react-loader
49 error If you need help, you may report this error at:
49 error <https://github.com/npm/npm/issues>
50 verbose exit [ 1, true ]