Skip to content

Commit 37b04d5

Browse files
authored
Build: remove stale Insight package from custom builds
Close gh-5181
1 parent 6b2094d commit 37b04d5

File tree

2 files changed

+2
-43
lines changed

2 files changed

+2
-43
lines changed

build/tasks/build.js

+2-42
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,6 @@ module.exports = function( grunt ) {
1010
var fs = require( "fs" ),
1111
requirejs = require( "requirejs" ),
1212
slimBuildFlags = require( "./lib/slim-build-flags" ),
13-
Insight = require( "insight" ),
14-
pkg = require( "../../package.json" ),
1513
srcFolder = __dirname + "/../../src/",
1614
rdefineEnd = /\}\s*?\);[^}\w]*$/,
1715
read = function( fileName ) {
@@ -357,47 +355,9 @@ module.exports = function( grunt ) {
357355
), [] )
358356

359357
.join( ":" ) :
360-
"",
361-
done = this.async(),
362-
insight = new Insight( {
363-
trackingCode: "UA-1076265-4",
364-
pkg: pkg
365-
} );
366-
367-
function exec( trackingAllowed ) {
368-
var tracks = args.length ? args[ 0 ].split( "," ) : [];
369-
var defaultPath = [ "build", "custom" ];
370-
371-
tracks = tracks.map( function( track ) {
372-
return track.replace( /\//g, "+" );
373-
} );
374-
375-
if ( trackingAllowed ) {
376-
377-
// Track individuals
378-
tracks.forEach( function( module ) {
379-
var path = defaultPath.concat( [ "individual" ], module );
380-
381-
insight.track.apply( insight, path );
382-
} );
383-
384-
// Track full command
385-
insight.track.apply( insight, defaultPath.concat( [ "full" ], tracks ) );
386-
}
387-
388-
grunt.task.run( [ "build:*:*" + ( modules ? ":" + modules : "" ), "uglify", "dist" ] );
389-
done();
390-
}
358+
"";
391359

392360
grunt.log.writeln( "Creating custom build...\n" );
393-
394-
// Ask for permission the first time
395-
if ( insight.optOut === undefined ) {
396-
insight.askPermission( null, function( _error, result ) {
397-
exec( result );
398-
} );
399-
} else {
400-
exec( !insight.optOut );
401-
}
361+
grunt.task.run( [ "build:*:*" + ( modules ? ":" + modules : "" ), "uglify", "dist" ] );
402362
} );
403363
};

package.json

-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,6 @@
4444
"grunt-npmcopy": "0.2.0",
4545
"gzip-js": "0.3.2",
4646
"husky": "4.2.5",
47-
"insight": "0.10.3",
4847
"jsdom": "19.0.0",
4948
"karma": "^6.3.17",
5049
"karma-browserstack-launcher": "1.6.0",

0 commit comments

Comments
 (0)