Skip to content

Commit db017c3

Browse files
Interfacedl1bbcsg
authored andcommitted
Version 2.7.5
GitOrigin-RevId: a4e1d84815b7c3f2227ee58083ace7cc6fd0f5ca
1 parent d5f24ea commit db017c3

File tree

5 files changed

+297
-651
lines changed

5 files changed

+297
-651
lines changed

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# Change log
22

3+
## 2.7.5 (release date: 23.11.2020)
4+
5+
### Framework
6+
* Fix playback with start position causing transition errors on PC
7+
8+
### Tools
9+
* Fix compatibility with PostCSS 8.0
10+
* Closure compiler updated to `20201102`
11+
312
## 2.7.4 (release date: 01.10.2020)
413
Virtually the same as `2.7.4-alpha.1`
514

lib/server.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -104,8 +104,7 @@ class Server {
104104
const webPath = this.getStyleWebPath(fsPath);
105105
const modifiedValue = rule.params.replace(importPath, webPath);
106106

107-
// eslint-disable-next-line new-cap
108-
rule.replaceWith(new postcss.atRule({name: 'import', params: modifiedValue}));
107+
rule.replaceWith(new postcss.AtRule({name: 'import', params: modifiedValue}));
109108
logger.silly(`Replacing CSS import ${importPath} with ${webPath}`);
110109
});
111110
})

0 commit comments

Comments
 (0)