Skip to content

Commit

Permalink
Fix package name
Browse files Browse the repository at this point in the history
  • Loading branch information
RosyTucker committed Nov 2, 2016
1 parent e2a6c92 commit 1cf0788
Show file tree
Hide file tree
Showing 2 changed files with 141 additions and 1 deletion.
140 changes: 140 additions & 0 deletions npm-debug.log
Original file line number Diff line number Diff line change
@@ -0,0 +1,140 @@
0 info it worked if it ends with ok
1 verbose cli [ '/usr/local/Cellar/node/6.2.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/rtucker/Personal/react-feature-toggles',
7 silly cache add type: 'directory' }
8 verbose addLocalDirectory /Users/rtucker/.npm/react-feature-toggle/1.0.1/package.tgz not in flight; packing
9 verbose correctMkdir /Users/rtucker/.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/rtucker/Personal/react-feature-toggles/node_modules/.bin:/usr/local/Cellar/node/6.2.0/bin:/Users/rtucker/.rbenv/shims:/Users/rtucker/.rbenv/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin
13 verbose lifecycle [email protected]~prepublish: CWD: /Users/rtucker/Personal/react-feature-toggles
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/rtucker/.npm/react-feature-toggle/1.0.1/package.tgz',
16 verbose tar pack '/Users/rtucker/Personal/react-feature-toggles' ]
17 verbose tarball /Users/rtucker/.npm/react-feature-toggle/1.0.1/package.tgz
18 verbose folder /Users/rtucker/Personal/react-feature-toggles
19 verbose addLocalTarball adding from inside cache /Users/rtucker/.npm/react-feature-toggle/1.0.1/package.tgz
20 verbose correctMkdir /Users/rtucker/.npm correctMkdir not in flight; initializing
21 silly cache afterAdd [email protected]
22 verbose afterAdd /Users/rtucker/.npm/react-feature-toggle/1.0.1/package/package.json not in flight; writing
23 verbose correctMkdir /Users/rtucker/.npm correctMkdir not in flight; initializing
24 verbose afterAdd /Users/rtucker/.npm/react-feature-toggle/1.0.1/package/package.json written
25 silly publish { name: 'react-feature-toggle',
25 silly publish version: '1.0.1',
25 silly publish description: 'Feature toggle framework for react - down with feature branches',
25 silly publish main: 'dist/',
25 silly publish scripts:
25 silly publish { 'ci-build': 'npm run install && npm run lint && npm run test && npm run build',
25 silly publish lint: 'eslint src test --ext .jsx,.js',
25 silly publish test: 'mocha test --recursive --compilers jsx?:babel-register --timeout 5000',
25 silly publish build: 'rm -rf lib && babel src/ -d lib/',
25 silly publish 'build-example': 'webpack --config webpack.example.config.babel.js',
25 silly publish prepublish: 'npm run build' },
25 silly publish repository:
25 silly publish { type: 'git',
25 silly publish url: 'git+https://github.com/RosyTucker/react-feature-toggles.git' },
25 silly publish files: [ 'lib', 'src' ],
25 silly publish keywords: [ 'react', 'feature', 'toggle', 'toggles' ],
25 silly publish author: { name: 'Rose Tucker' },
25 silly publish license: 'MIT',
25 silly publish bugs: { url: 'https://github.com/RosyTucker/react-feature-toggles/issues' },
25 silly publish homepage: 'https://github.com/RosyTucker/react-feature-toggles#readme',
25 silly publish peerDependencies: { react: '15.x', 'react-dom': '15.x' },
25 silly publish devDependencies:
25 silly publish { 'babel-core': '6.18.0',
25 silly publish 'babel-loader': '6.2.7',
25 silly publish 'babel-preset-es2015': '6.18.0',
25 silly publish 'babel-preset-react': '6.16.0',
25 silly publish 'babel-register': '6.18.0',
25 silly publish chai: '3.5.0',
25 silly publish enzyme: '2.5.1',
25 silly publish eslint: '3.9.1',
25 silly publish 'eslint-config-airbnb': '12.0.0',
25 silly publish 'eslint-plugin-import': '1.16.0',
25 silly publish 'eslint-plugin-jsx-a11y': '2.2.3',
25 silly publish 'eslint-plugin-react': '6.4.1',
25 silly publish jsdomify: '3.1.0',
25 silly publish mocha: '3.1.2',
25 silly publish react: '15.3.2',
25 silly publish 'react-addons-test-utils': '15.3.2',
25 silly publish 'react-dom': '15.3.2',
25 silly publish webpack: '1.13.3',
25 silly publish yargs: '6.3.0' },
25 silly publish dependencies: { 'react-feature-toggles': '1.0.0' },
25 silly publish readme: '# react-feature-toggles\nDeclarative feature toggle framework for react\n\n## Install\n\n`npm install react-feature-toggles`\n\n## Usage\n\n```\nimport React from \'react\';\nimport ReactDOM from \'react-dom\';\nimport { FeatureToggleProvider, FeatureToggle } from \'../lib/react-feature-toggles\';\n\nconst toggleNames = {\n SHOW_HELLO_WORLD: \'showHelloWorld\'\n // ... add more here\n};\n\nconst toggles = {\n // Try setting this to false\n [toggleNames.SHOW_HELLO_WORLD]: false\n // ... add more here\n};\n\nconst ExampleComponent = () => (\n <FeatureToggleProvider featureToggleList={toggles}>\n <h1>Toggling Example</h1>\n <FeatureToggle featureName={toggleNames.SHOW_HELLO_WORLD}>\n Toggle is on - Hello World\n </FeatureToggle>\n <FeatureToggle featureName={toggleNames.SHOW_HELLO_WORLD} showOnlyWhenDisabled>\n Sorry, toggle is off\n </FeatureToggle>\n </FeatureToggleProvider>\n);\n\n\nReactDOM.render(<ExampleComponent />, document.getElementById(\'example\'));\n```\n\n## Building the example\n\n- Clone this repo\n- Run `npm install`\n- Run `npm run build-example`\n- Open `example/example.html` in the browser\n- Play around with the toggle values\n',
25 silly publish readmeFilename: 'README.md',
25 silly publish gitHead: 'e2a6c9260c8fba3447d90148a58b33c1c26e31ee',
25 silly publish _id: '[email protected]',
25 silly publish _shasum: '3fd8641d275c47e1c9ae0a5f96094a695a1ecca0',
25 silly publish _from: '.' }
26 verbose getPublishConfig undefined
27 silly mapToRegistry name react-feature-toggle
28 silly mapToRegistry using default registry
29 silly mapToRegistry registry https://registry.npmjs.org/
30 silly mapToRegistry data Result {
30 silly mapToRegistry raw: 'react-feature-toggle',
30 silly mapToRegistry scope: null,
30 silly mapToRegistry name: 'react-feature-toggle',
30 silly mapToRegistry rawSpec: '',
30 silly mapToRegistry spec: 'latest',
30 silly mapToRegistry type: 'tag' }
31 silly mapToRegistry uri https://registry.npmjs.org/react-feature-toggle
32 verbose publish registryBase https://registry.npmjs.org/
33 silly publish uploading /Users/rtucker/.npm/react-feature-toggle/1.0.1/package.tgz
34 verbose request uri https://registry.npmjs.org/react-feature-toggle
35 verbose request sending authorization for write operation
36 info attempt registry request try #1 at 7:02:44 PM
37 verbose request using bearer token for auth
38 verbose request id a1737cba0c40a080
39 http request PUT https://registry.npmjs.org/react-feature-toggle
40 http 403 https://registry.npmjs.org/react-feature-toggle
41 verbose headers { 'content-type': 'application/json',
41 verbose headers 'cache-control': 'max-age=300',
41 verbose headers 'content-length': '114',
41 verbose headers 'accept-ranges': 'bytes',
41 verbose headers date: 'Wed, 02 Nov 2016 19:02:41 GMT',
41 verbose headers via: '1.1 varnish',
41 verbose headers connection: 'keep-alive',
41 verbose headers 'x-served-by': 'cache-lhr6351-LHR',
41 verbose headers 'x-cache': 'MISS',
41 verbose headers 'x-cache-hits': '0',
41 verbose headers 'x-timer': 'S1478113360.486292,VS0,VE974',
41 verbose headers vary: 'Accept-Encoding' }
42 verbose request invalidating /Users/rtucker/.npm/registry.npmjs.org/react-feature-toggle on PUT
43 error publish Failed PUT 403
44 verbose stack Error: you do not have permission to publish "react-feature-toggle". Are you logged in as the correct user? : react-feature-toggle
44 verbose stack at makeError (/usr/local/lib/node_modules/npm/node_modules/npm-registry-client/lib/request.js:264:12)
44 verbose stack at CachingRegistryClient.<anonymous> (/usr/local/lib/node_modules/npm/node_modules/npm-registry-client/lib/request.js:252:14)
44 verbose stack at Request._callback (/usr/local/lib/node_modules/npm/node_modules/npm-registry-client/lib/request.js:172:14)
44 verbose stack at Request.self.callback (/usr/local/lib/node_modules/npm/node_modules/request/request.js:200: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> (/usr/local/lib/node_modules/npm/node_modules/request/request.js:1067:10)
44 verbose stack at emitOne (events.js:101:20)
44 verbose stack at Request.emit (events.js:188:7)
44 verbose stack at IncomingMessage.<anonymous> (/usr/local/lib/node_modules/npm/node_modules/request/request.js:988:12)
45 verbose statusCode 403
46 verbose pkgid react-feature-toggle
47 verbose cwd /Users/rtucker/Personal/react-feature-toggles
48 error Darwin 15.5.0
49 error argv "/usr/local/Cellar/node/6.2.0/bin/node" "/usr/local/bin/npm" "publish"
50 error node v6.2.0
51 error npm v3.8.9
52 error code E403
53 error you do not have permission to publish "react-feature-toggle". Are you logged in as the correct user? : react-feature-toggle
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 ]
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "react-feature-toggle",
"name": "react-feature-toggles",
"version": "1.0.1",
"description": "Feature toggle framework for react - down with feature branches",
"main": "dist/",
Expand Down

0 comments on commit 1cf0788

Please sign in to comment.