Skip to content

Commit bb8d763

Browse files
committed
v0.7.4
1 parent 297b0ef commit bb8d763

File tree

5 files changed

+613
-699
lines changed

5 files changed

+613
-699
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@
22

33
[UNRELEASED]
44

5+
[0.7.4]
6+
7+
- Change dist output location
8+
- Teporarily switch test to Chrome - [Gecko fails](https://github.com/rustwasm/wasm-bindgen/issues/2261)
9+
510
[0.7.3]
611

712
- Upgrade postcss-typed-css-classes to bring in bug fix

Makefile.toml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@
22

33
[tasks.verify]
44
description = "Format, lint with Clippy and run tests"
5-
dependencies = ["fmt", "clippy", "test_h_firefox"]
5+
dependencies = ["fmt", "clippy", "test_h_chrome"]
66

77
[tasks.verify_only]
88
description = "Like `verify`, but fails if the code isn't formatted. Primarily for CI."
9-
dependencies = ["fmt_check", "clippy", "test_h_firefox"]
9+
dependencies = ["fmt_check", "clippy", "test_h_chrome"]
1010

1111
# ---- TEST ----
1212

@@ -27,6 +27,11 @@ description = "Run headless tests. Ex: 'cargo make test_h firefox'. Test envs: [
2727
extend = "test"
2828
args = ["test", "--headless", "--${@}"]
2929

30+
[tasks.test_h_chrome]
31+
description = "Run headless tests with Chrome."
32+
extend = "test"
33+
args = ["test", "--headless", "--chrome"]
34+
3035
[tasks.test_h_firefox]
3136
description = "Run headless tests with Firefox."
3237
extend = "test"

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"author": "Martin Kavík <[email protected]>",
33
"name": "seed-quickstart-webpack",
4-
"version": "0.7.3",
4+
"version": "0.7.4",
55
"repository": "https://github.com/MartinKavik/seed-quickstart-webpack",
66
"license": "MIT",
77
"scripts": {

webpack.css_classes.config.js

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ module.exports = (env, argv) => {
1111
return {
1212
entry: path.resolve(__dirname, "./static/index.css_classes.ts"),
1313
output: {
14-
path: path.resolve(__dirname, "../dist"),
15-
filename: "css_classes.js"
14+
path: path.resolve(__dirname, "dist"),
15+
filename: "css_classes.js",
1616
},
1717
plugins: [new WebpackBar(), new CleanWebpackPlugin()],
1818
module: {
@@ -24,14 +24,14 @@ module.exports = (env, argv) => {
2424
loader: "file-loader",
2525
options: {
2626
emitFile: false,
27-
name: "[path][name].[ext]"
28-
}
29-
}
30-
]
27+
name: "[path][name].[ext]",
28+
},
29+
},
30+
],
3131
},
3232
{
3333
test: /\.ts$/,
34-
loader: "ts-loader?configFile=tsconfig.css_classes.json"
34+
loader: "ts-loader?configFile=tsconfig.css_classes.json",
3535
},
3636
{
3737
test: /\.css$/,
@@ -43,13 +43,13 @@ module.exports = (env, argv) => {
4343
options: {
4444
config: {
4545
ctx: { mode: argv.mode },
46-
path: __dirname
47-
}
48-
}
49-
}
50-
]
51-
}
52-
]
53-
}
46+
path: __dirname,
47+
},
48+
},
49+
},
50+
],
51+
},
52+
],
53+
},
5454
};
5555
};

0 commit comments

Comments
 (0)