securemark 0.244.0 → 0.245.0

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/.eslintrc.json ADDED
@@ -0,0 +1,26 @@
1
+ {
2
+ "root": true,
3
+ "extends": [
4
+ //"eslint:recommended",
5
+ //"plugin:@typescript-eslint/recommended"
6
+ ],
7
+ "parser": "@typescript-eslint/parser",
8
+ "parserOptions": { "project": ["./tsconfig.json"] },
9
+ "plugins": [
10
+ //"@typescript-eslint",
11
+ "redos"
12
+ ],
13
+ "rules": {
14
+ "redos/no-vulnerable": [
15
+ "error",
16
+ {
17
+ "ignoreErrors": false,
18
+ "attackTimeout": null,
19
+ "timeout": 30000
20
+ }
21
+ ]
22
+ },
23
+ "ignorePatterns": [
24
+ "**/*.test.ts"
25
+ ]
26
+ }
package/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.245.0
4
+
5
+ - Use webpack.
6
+
7
+ ## 0.244.2
8
+
9
+ - Refactoring.
10
+
11
+ ## 0.244.1
12
+
13
+ - Refactoring.
14
+
3
15
  ## 0.244.0
4
16
 
5
17
  - Change mathblock syntax to increase the maximum number of contained lines to 300.
package/design.md CHANGED
@@ -297,3 +297,4 @@ MarkdownはGFMのように最初から高機能で完成度の高い拡張不要
297
297
  ### Data URI
298
298
 
299
299
  Data URIは保存および転送容量削減ならびに集約的管理のためサポートしない。
300
+ 特に規制および公開レベルの媒体別の設定のためテキストとメディアの分離が必須となる。