You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There is an easy fix, you just need to update the call like described in the error.
// packages/npm-container/package.js - OLD VERSIONPackage.onUse(function(api){api.add_files('index.js','server');api.add_files('../../packages.json','server',{isAsset: true});});
// packages/npm-container/package.js - NEW VERSIONPackage.onUse(function(api){api.add_files('index.js','server');api.addAssets('../../packages.json','server');});
Using the new packagecheck(https://github.com/timothyarmes/packagecheck) shows a deprecated call in package.js.
=> Checking package npm-container...
Warning: Package uses deprecated 'add_files' declaration. Use 'addFiles' instead.
The text was updated successfully, but these errors were encountered: