iopipe / iopipe-js-core

Observe and develop serverless apps with confidence on AWS Lambda with Tracing, Metrics, Profiling, Monitoring, and more.
https://www.iopipe.com/
Apache License 2.0
124 stars 20 forks source link

Publish v1.5.0 to NPM #213

Closed AndrewBarba closed 6 years ago

AndrewBarba commented 6 years ago

We are getting a warning in iopipe console that a newer version is available but the newest version is not available on NPM

kolanos commented 6 years ago

@AndrewBarba Are you using the serverless plugin? Or the IOpipe agent directly?

AndrewBarba commented 6 years ago

Using this repo directly: npm install iopipe

You can see https://www.npmjs.com/package/iopipe that the current version is 1.4.0 even though the package.json in this repo is 1.5.0. I think you guys just need to publish, thats all

kolanos commented 6 years ago

@AndrewBarba We're in the process of transitioning this package to @iopipe/core. So the following should work:

npm uninstall iopipe --save
npm install @iopipe/core --save

That will install 1.5.0 of @iopipe/core, which is the new name for iopipe. You'll also need to update your imports to use @iopipe/core. We plan to deprecate iopipe soon.

AndrewBarba commented 6 years ago

Ah perfect will do, didn't realize core was moved under that namespace yet