Skip to content

Commit

Permalink
incre patch for npm publish
Browse files Browse the repository at this point in the history
  • Loading branch information
newbreedofgeek committed May 19, 2016
1 parent 4381d93 commit dc8caca
Show file tree
Hide file tree
Showing 2 changed files with 113 additions and 1 deletion.
112 changes: 112 additions & 0 deletions npm-debug.log
Original file line number Diff line number Diff line change
@@ -0,0 +1,112 @@
0 info it worked if it ends with ok
1 verbose cli [ '/usr/local/Cellar/node/5.8.0/bin/node',
1 verbose cli '/usr/local/bin/npm',
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 name: null,
7 silly cache add rawSpec: '.',
7 silly cache add spec: '/Users/markpaul/Documents/software/react-stepzilla',
7 silly cache add type: 'directory' }
8 verbose addLocalDirectory /Users/markpaul/.npm/react-stepzilla/1.2.1/package.tgz not in flight; packing
9 verbose correctMkdir /Users/markpaul/.npm correctMkdir not in flight; initializing
10 info lifecycle [email protected]~prepublish: [email protected]
11 verbose lifecycle [email protected]~prepublish: unsafe-perm in lifecycle true
12 verbose lifecycle [email protected]~prepublish: PATH: /usr/local/lib/node_modules/npm/bin/node-gyp-bin:/Users/markpaul/Documents/software/react-stepzilla/node_modules/.bin:/usr/local/Cellar/node/5.8.0/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin
13 verbose lifecycle [email protected]~prepublish: CWD: /Users/markpaul/Documents/software/react-stepzilla
14 silly lifecycle [email protected]~prepublish: Args: [ '-c', 'npm run build' ]
15 silly lifecycle [email protected]~prepublish: Returned: code: 0 signal: null
16 verbose tar pack [ '/Users/markpaul/.npm/react-stepzilla/1.2.1/package.tgz',
16 verbose tar pack '/Users/markpaul/Documents/software/react-stepzilla' ]
17 verbose tarball /Users/markpaul/.npm/react-stepzilla/1.2.1/package.tgz
18 verbose folder /Users/markpaul/Documents/software/react-stepzilla
19 verbose addLocalTarball adding from inside cache /Users/markpaul/.npm/react-stepzilla/1.2.1/package.tgz
20 verbose correctMkdir /Users/markpaul/.npm correctMkdir not in flight; initializing
21 silly cache afterAdd [email protected]
22 verbose afterAdd /Users/markpaul/.npm/react-stepzilla/1.2.1/package/package.json not in flight; writing
23 verbose correctMkdir /Users/markpaul/.npm correctMkdir not in flight; initializing
24 verbose afterAdd /Users/markpaul/.npm/react-stepzilla/1.2.1/package/package.json written
25 silly publish { name: 'react-stepzilla',
25 silly publish version: '1.2.1',
25 silly publish description: 'A react multi-step, wizard component for managing data collection via forms and sub components',
25 silly publish main: './dist/main.js',
25 silly publish scripts:
25 silly publish { test: 'echo "Error: no test specified" && exit 1',
25 silly publish build: 'node ./node_modules/gulp/bin/gulp.js build',
25 silly publish prepublish: 'npm run build' },
25 silly publish repository:
25 silly publish { type: 'git',
25 silly publish url: 'git+https://github.com/newbreedofgeek/react-stepzilla.git' },
25 silly publish keywords: [ 'react', 'multistep', 'react', 'wizard', 'react' ],
25 silly publish author: { name: '@newbreedofgeek' },
25 silly publish license: 'ISC',
25 silly publish bugs: { url: 'https://github.com/newbreedofgeek/react-stepzilla/issues' },
25 silly publish homepage: 'https://github.com/newbreedofgeek/react-stepzilla#readme',
25 silly publish devDependencies:
25 silly publish { 'babel-preset-es2015': '^6.9.0',
25 silly publish 'babel-preset-react': '^6.5.0',
25 silly publish gulp: '^3.9.1',
25 silly publish 'gulp-babel': '^6.1.2' },
25 silly publish readme: '# react stepzilla\nis a multi-step, wizard component for data collection via forms and other sub components. It basically lets you throw a bunch of react components at it (data forms, text / html components etc) and it will take the user through those components in steps. If it\'s a data entry form it will tigger validation and only proceed if the data is valid.\n\n\n### what does it do?\n- something like this of course:\n\n![react-stepzilla](https://raw.githubusercontent.com/newbreedofgeek/react-stepzilla/master/stepzilla-eg.png)\n\n### get started\n- run\n```\nnpm install react-stepzilla\n```\n- require into your project via\n```\nvar StepZilla = require(\'react-stepzilla\')\n```\n- define the list of all the components you want to step through. The `name` indicates the title of the UI step and component is what loads.\n```\nconst steps =\n [\n {name: \'Step 1\', component: <Step1 />},\n {name: \'Step 2\', component: <Step2 />},\n {name: \'Step 3\', component: <Step3 />},\n {name: \'Step 4\', component: <Step4 />},\n {name: \'Step 5\', component: <Step5 />}\n ]\n```\n- and now render it out somewhere in your app\n```\n <div className=\'step-progress\'>\n <StepZilla steps={steps}/>\n </div>\n```\n- if one of your components is a form that requires validation before moving to the next component, then that component needs to implement a `isValidated()` public method which validates the form and returns true/false if the data is valid. For an e.g. on this have a look at the `src/examples/Step2` component.\n\n- also if you want some default style, copy the source from `src/css/main.css` code into your project\n\n### dev\n- all node source is in src/main.js\n- you need to install dependencies first `npm install`\n- make any changes and run `npm run build` to transpile the jsx into `dist`\n- the transpilation is run as a auto pre-publish task so it should usually be up to date when consumed via npm\n\n### todo\n- write the tests\n\n#### change log\n- 1.2.0\n - fixed issue when when consumed via npm the jsx was causing a build error on the host project. Its not transpiled via babel into dist\n- 1.0.0\n - initial working version\n',
25 silly publish readmeFilename: 'README.md',
25 silly publish gitHead: '4381d93bd2c17fbcf4f58992c6e2fdeea66baf17',
25 silly publish _id: '[email protected]',
25 silly publish _shasum: 'b119be582e8304b0817283cf8940db7ebddf7451',
25 silly publish _from: '.' }
26 verbose getPublishConfig undefined
27 silly mapToRegistry name react-stepzilla
28 silly mapToRegistry using default registry
29 silly mapToRegistry registry https://registry.npmjs.org/
30 silly mapToRegistry uri https://registry.npmjs.org/react-stepzilla
31 verbose publish registryBase https://registry.npmjs.org/
32 silly publish uploading /Users/markpaul/.npm/react-stepzilla/1.2.1/package.tgz
33 verbose request uri https://registry.npmjs.org/react-stepzilla
34 verbose request sending authorization for write operation
35 info attempt registry request try #1 at 3:27:48 PM
36 verbose request using bearer token for auth
37 verbose request id faab6d2bbd1ae1fa
38 http request PUT https://registry.npmjs.org/react-stepzilla
39 http 403 https://registry.npmjs.org/react-stepzilla
40 verbose headers { 'content-type': 'application/json',
40 verbose headers 'cache-control': 'max-age=300',
40 verbose headers 'content-length': '95',
40 verbose headers 'accept-ranges': 'bytes',
40 verbose headers date: 'Thu, 19 May 2016 05:27:50 GMT',
40 verbose headers via: '1.1 varnish',
40 verbose headers connection: 'keep-alive',
40 verbose headers 'x-served-by': 'cache-syd1623-SYD',
40 verbose headers 'x-cache': 'MISS',
40 verbose headers 'x-cache-hits': '0',
40 verbose headers 'x-timer': 'S1463635668.974365,VS0,VE1087',
40 verbose headers vary: 'Accept-Encoding' }
41 verbose request invalidating /Users/markpaul/.npm/registry.npmjs.org/react-stepzilla on PUT
42 error publish Failed PUT 403
43 verbose stack Error: "You cannot publish over the previously published version 1.2.1." : react-stepzilla
43 verbose stack at makeError (/usr/local/lib/node_modules/npm/node_modules/npm-registry-client/lib/request.js:264:12)
43 verbose stack at CachingRegistryClient.<anonymous> (/usr/local/lib/node_modules/npm/node_modules/npm-registry-client/lib/request.js:252:14)
43 verbose stack at Request._callback (/usr/local/lib/node_modules/npm/node_modules/npm-registry-client/lib/request.js:172:14)
43 verbose stack at Request.self.callback (/usr/local/lib/node_modules/npm/node_modules/request/request.js:199:22)
43 verbose stack at emitTwo (events.js:100:13)
43 verbose stack at Request.emit (events.js:185:7)
43 verbose stack at Request.<anonymous> (/usr/local/lib/node_modules/npm/node_modules/request/request.js:1036:10)
43 verbose stack at emitOne (events.js:95:20)
43 verbose stack at Request.emit (events.js:182:7)
43 verbose stack at IncomingMessage.<anonymous> (/usr/local/lib/node_modules/npm/node_modules/request/request.js:963:12)
44 verbose statusCode 403
45 verbose pkgid react-stepzilla
46 verbose cwd /Users/markpaul/Documents/software/react-stepzilla
47 error Darwin 15.4.0
48 error argv "/usr/local/Cellar/node/5.8.0/bin/node" "/usr/local/bin/npm" "publish"
49 error node v5.8.0
50 error npm v3.7.3
51 error code E403
52 error "You cannot publish over the previously published version 1.2.1." : react-stepzilla
53 error If you need help, you may report this error at:
53 error <https://github.com/npm/npm/issues>
54 verbose exit [ 1, true ]
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "react-stepzilla",
"version": "1.2.1",
"version": "1.2.2",
"description": "A react multi-step, wizard component for managing data collection via forms and sub components",
"main": "./dist/main.js",
"scripts": {
Expand Down

0 comments on commit dc8caca

Please sign in to comment.