File tree Expand file tree Collapse file tree 5 files changed +173
-59
lines changed Expand file tree Collapse file tree 5 files changed +173
-59
lines changed Original file line number Diff line number Diff line change
1
+ ## 0.4.0 (2 May 2018)
2
+
3
+ * Upgrade to webpack 4, babel 7 and vue-loader 15
4
+ * Changed the default value of ` browsers ` config option
5
+ * Merged ` cssSourceMap ` and ` jsSourceMap ` options into ` sourceMap `
6
+ * Activate debug mode on end-to-end tests failure
7
+ * ` basys init ` now streams the output of ` npm install ` into the terminal
8
+ * Set up Travis CI and AppVeyor for automatic package testing
9
+
1
10
## 0.3.5 (8 April 2018)
2
11
3
12
* Dev server integration with external tools
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " basys-cli" ,
3
- "version" : " 0.3.1 " ,
3
+ "version" : " 0.4.0 " ,
4
4
"description" : " CLI for developing Basys projects" ,
5
5
"homepage" : " https://basys.io" ,
6
6
"bugs" : {
17
17
},
18
18
"dependencies" : {
19
19
"chalk" : " 2.4.1" ,
20
- "download" : " 6.2.5 " ,
20
+ "download" : " 7.0.0 " ,
21
21
"execa" : " 0.10.0" ,
22
- "fs-extra" : " 5 .0.0" ,
22
+ "fs-extra" : " 6 .0.0" ,
23
23
"inquirer" : " 5.2.0" ,
24
- "ora" : " 2.0 .0" ,
24
+ "ora" : " 2.1 .0" ,
25
25
"semver" : " 5.5.0" ,
26
26
"yargs" : " 11.0.0"
27
27
},
Original file line number Diff line number Diff line change @@ -40,6 +40,11 @@ class FriendlyErrorsWebpackPlugin extends FriendlyErrorsPlugin {
40
40
) ;
41
41
}
42
42
43
+ // BUG: so far only happened due to a bug in code loading vue files
44
+ if ( error . name === 'ModuleParseError' ) {
45
+ return wrapError ( error , error . webpackError . message ) ;
46
+ }
47
+
43
48
if ( error . name === 'ModuleBuildError' ) {
44
49
const err = error . webpackError . error ;
45
50
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " basys" ,
3
- "version" : " 0.3.5 " ,
3
+ "version" : " 0.4.0 " ,
4
4
"description" : " Toolbox for building Basys projects" ,
5
5
"homepage" : " https://basys.io" ,
6
6
"bugs" : {
22
22
"babel-jest" : " 22.4.3" ,
23
23
"babel-loader" : " 8.0.0-beta.2" ,
24
24
"basys-app-builder" : " 0.3.1" ,
25
- "basys-cli" : " 0.3.1 " ,
25
+ "basys-cli" : " 0.4.0 " ,
26
26
"body-parser" : " 1.18.2" ,
27
27
"chalk" : " 2.4.1" ,
28
28
"chokidar" : " 2.0.3" ,
36
36
"express" : " 4.16.3" ,
37
37
"file-loader" : " 1.1.11" ,
38
38
"friendly-errors-webpack-plugin" : " 1.7.0" ,
39
- "fs-extra" : " 5 .0.0" ,
39
+ "fs-extra" : " 6 .0.0" ,
40
40
"glob" : " 7.1.2" ,
41
41
"html-webpack-plugin" : " 3.2.0" ,
42
42
"ignore" : " 3.3.8" ,
51
51
"nodemon" : " 1.17.3" ,
52
52
"nunjucks" : " 3.1.2" ,
53
53
"opn" : " 5.3.0" ,
54
- "ora" : " 2.0 .0" ,
54
+ "ora" : " 2.1 .0" ,
55
55
"path-to-regexp" : " 1.7.0" ,
56
56
"portfinder" : " 1.0.13" ,
57
57
"postcss-conditionals" : " 3.0.0-beta.0" ,
72
72
"uglifyjs-webpack-plugin" : " 1.2.5" ,
73
73
"url-loader" : " 1.0.1" ,
74
74
"vue" : " 2.5.16" ,
75
- "vue-loader" : " 15.0.4 " ,
75
+ "vue-loader" : " 15.0.5 " ,
76
76
"vue-meta" : " 1.5.0" ,
77
77
"vue-router" : " 3.0.1" ,
78
78
"vue-style-loader" : " 4.1.0" ,
You can’t perform that action at this time.
0 commit comments