# 六.run

Compiler.prototype.run = function(callback) {
  var self = this
  var startTime = Date.now()

  self.applyPluginsAsync("before-run", self, function(err) {
    if (err) return callback(err)

    self.applyPluginsAsync("run", self, function(err) {
      if (err) return callback(err)

      self.readRecords(function(err) {
        if (err) return callback(err)

        self.compile(function onCompiled(err, compilation) {
          if (err) return callback(err)

          if (
            self.applyPluginsBailResult("should-emit", compilation) === false
          ) {
            var stats = new Stats(compilation)
            stats.startTime = startTime
            stats.endTime = Date.now()
            self.applyPlugins("done", stats)
            return callback(null, stats)
          }

          self.emitAssets(compilation, function(err) {
            if (err) return callback(err)

            if (compilation.applyPluginsBailResult("need-additional-pass")) {
              compilation.needAdditionalPass = true

              var stats = new Stats(compilation)
              stats.startTime = startTime
              stats.endTime = Date.now()
              self.applyPlugins("done", stats)

              self.applyPluginsAsync("additional-pass", function(err) {
                if (err) return callback(err)
                self.compile(onCompiled)
              })
              return
            }

            self.emitRecords(function(err) {
              if (err) return callback(err)

              var stats = new Stats(compilation)
              stats.startTime = startTime
              stats.endTime = Date.now()
              self.applyPlugins("done", stats)
              return callback(null, stats)
            })
          })
        })
      })
    })
  })
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59