custom-labels 0.4.4

Custom labels for profilers
Documentation
1
2
3
4
5
6
7
const { execSync } = require('child_process');

if (process.platform === 'linux') {
  execSync('node-gyp rebuild', { stdio: 'inherit' });
} else {
  console.log('Skipping native addon build on this platform:', process.platform);
}