@plotdb/srcbuild 0.0.39 → 0.0.40

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/ext/pug.js CHANGED
@@ -17,6 +17,7 @@ pugbuild = function(opt){
17
17
  opt == null && (opt = {});
18
18
  this.i18n = opt.i18n || null;
19
19
  this.intlbase = opt.intlbase || 'intl';
20
+ this.filters = opt.filters || {};
20
21
  this.extapi = this.getExtapi();
21
22
  this.init(import$({
22
23
  srcdir: 'src/pug',
@@ -79,7 +80,7 @@ pugbuild.prototype = import$(Object.create(base.prototype), {
79
80
  return dom;
80
81
  }
81
82
  }],
82
- filters: {
83
+ filters: import$(this.filters || {}, {
83
84
  'lsc': function(text, opt){
84
85
  var code, codeMin;
85
86
  code = livescript.compile(text, {
@@ -111,7 +112,7 @@ pugbuild.prototype = import$(Object.create(base.prototype), {
111
112
  'md': function(text, opt){
112
113
  return marked.parse(text);
113
114
  }
114
- },
115
+ }),
115
116
  json: function(it){
116
117
  return JSON.parse(fs.readFileSync(it));
117
118
  },
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "author": "zbryikt",
3
3
  "name": "@plotdb/srcbuild",
4
- "version": "0.0.39",
4
+ "version": "0.0.40",
5
5
  "description": "",
6
6
  "main": "./dist/main.js",
7
7
  "files": [
package/CHANGELOG.md DELETED
@@ -1,204 +0,0 @@
1
- # Change Log
2
-
3
- ## v0.0.39
4
-
5
- - bug fix: pug build fails when pug file is empty
6
-
7
-
8
- ## v0.0.38
9
-
10
- - upgrade @loadingio/debounce.js
11
- - tweak dependency range syntax
12
- - audit and fix cached-path-relative vulnerability
13
-
14
-
15
- ## v0.0.37
16
-
17
- - bug fix: crash when iterating to a symlink pointing to a non-existed file.
18
-
19
-
20
- ## v0.0.36
21
-
22
- - use `@plotdb/colors` to replace `colors`
23
-
24
-
25
- ## v0.0.35
26
-
27
- - upgrade marked for vulnerability fixing
28
-
29
-
30
- ## v0.0.34
31
-
32
- - support legacy syntax in libLoader for script loading
33
- - fix bug: `libLoader.root` doesn't work properly
34
-
35
-
36
- ## v0.0.33
37
-
38
- - support relative path in bundle.json
39
- - add test case for bundler
40
- - use local script for testing
41
-
42
-
43
- ## v0.0.32
44
-
45
- - bug fix: `defer` in libLoader should be by default true.
46
- - bug fix: stylus extension doesn't provide correct path for dependencies.
47
-
48
-
49
- ## v0.0.31
50
-
51
- - bug fix: the `script` and `css` mixin supports should be done by `postParse` plugin instead of code modification.
52
-
53
-
54
- ## v0.0.30
55
-
56
- - directly support `script` and `css` mixin in pug compiling.
57
-
58
-
59
- ## v0.0.29
60
-
61
- - bug fix: bundle not rebuild when bundle config file updated
62
- - bug fix: bundler exception not caught
63
-
64
-
65
- ## v0.0.28
66
-
67
- - totally remove `compress` option to prevent unwanted side effect of code removal
68
-
69
-
70
- ## v0.0.27
71
-
72
- - dont compress unused in pug lsc filter for our potential use of custom script block design in @plotdb/block
73
-
74
-
75
- ## v0.0.26
76
-
77
- - remove log
78
-
79
-
80
- ## v0.0.25
81
-
82
- - pass `ignored` to adapter to bypass unnecessary files to save time
83
- - by default minimize javascript and css in pug filter.
84
-
85
-
86
- ## v0.0.24
87
-
88
- - set `doctype` to `html` also in `pug-cli` to prevent `t="t"` generation.
89
-
90
-
91
- ## v0.0.23
92
-
93
- - set `doctype` to `html` to prevent `t="t"` generation.
94
-
95
-
96
- ## v0.0.22
97
-
98
- - add `srcbuild-pug` command for building pug with extapi
99
- - fix yaml loading issue by using `load` instead of `safe-load`.
100
-
101
-
102
- ## v0.0.21
103
-
104
- - fix module resolving path bug
105
-
106
-
107
- ## v0.0.20
108
-
109
- - resolve module path from basedir in ext/pug.
110
-
111
-
112
- ## v0.0.19
113
-
114
- - bump stylus version to 0.55.0 for removing deprecated dependencies
115
-
116
-
117
- ## v0.0.18
118
-
119
- - fix bug: lsc builder doesn't build unless glslify is enabled
120
-
121
-
122
- ## v0.0.17
123
-
124
- - support `json` API for reading json file in pug
125
-
126
-
127
- ## v0.0.16
128
-
129
- - fix bug: glslify transformed by browserify should have basedir from src file dir.
130
-
131
-
132
- ## v0.0.15
133
-
134
- - upgrade `path-parse` to fix vulnerability
135
- - support glslify transfomration by option `use-glslify`
136
-
137
-
138
- ## v0.0.14
139
-
140
- - add `i18n.intlbase` and `i18n.langauge` pug api and deprecate `intlbase` pug api.
141
-
142
-
143
- ## v0.0.13
144
-
145
- - fix bug: incorrect parameter passing in view/pug to ext/pug
146
-
147
-
148
- ## v0.0.12
149
-
150
- - add bundling sample code
151
- - fix bundling file path shown in log
152
-
153
-
154
- ## v0.0.11
155
-
156
- - fix bug: `desdir` and `base` not passed to pug in pug view constructor
157
-
158
-
159
- ## v0.0.10
160
-
161
- - fix bug: basedir should be opt.basedir
162
-
163
-
164
- ## v0.0.9
165
-
166
- - support pug view engine for express
167
-
168
-
169
- ## v0.0.8
170
-
171
- - fix bug: trying to get mtime of a non-existed file.
172
- - support options for files to ignore. by default, ignore `.git` folders.
173
-
174
-
175
- ## v0.0.7
176
-
177
- - simplify log
178
-
179
-
180
- ## v0.0.6
181
-
182
- - trap exception during `log-dependencies` and prevent from further building.
183
- - keep old dependency if `log-dependencies` fails.
184
-
185
-
186
- ## v0.0.5
187
-
188
- - support bundling
189
-
190
-
191
- ## v0.0.4
192
-
193
- - fix bug in ext/pug: basedir doesn't exist when initing, causing problem when getting dependencies. use path.resolve(srcdir) instead.
194
-
195
-
196
- ## v0.0.3
197
-
198
- - fix typo
199
-
200
-
201
- ## v0.0.2
202
-
203
- - fix bug: let pug use correct filename and basedir parameter. resolve pug files correctly
204
-