Skip to content

Commit deadb18

Browse files
authored
Merge pull request #194 from JetBrains/release-prepare
1.29.0-release
2 parents 14e2e62 + 2067cae commit deadb18

File tree

3 files changed

+17
-7
lines changed

3 files changed

+17
-7
lines changed

package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "kotlin-playground",
3-
"version": "1.29.0-alpha.1",
3+
"version": "1.29.0",
44
"description": "Self-contained component to embed in websites for running Kotlin code",
55
"keywords": [
66
"kotlin",
@@ -51,6 +51,7 @@
5151
"monkberry-directives": "4.0.8",
5252
"monkberry-events": "4.0.8",
5353
"monkberry-loader": "4.0.9",
54+
"postcss": "^8.4.31",
5455
"postcss-loader": "^7.3.3",
5556
"prettier": "^3.0.2",
5657
"query-string": "^6.5.0",

tests/crosslink.test.ts

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
import {expect, test} from '@playwright/test';
2-
import {promises as fs} from 'fs';
3-
import {decompressFromBase64} from 'lz-string';
1+
import { expect, test } from '@playwright/test';
2+
import { promises as fs } from 'fs';
3+
import { decompressFromBase64 } from 'lz-string';
44

55
const prefix = 'https://play.kotlinlang.org/editor/v1/' as const;
66

@@ -56,15 +56,15 @@ ${' '}
5656
println(name)
5757
println(value)
5858
${' '}
59-
}`
59+
}`,
6060
});
6161

6262
//language=text
6363
const codeWithMark = `fun containsEven(collection: Collection<Int>): Boolean = collection.any {[mark]TODO()[/mark]}`;
6464

65-
checkLink(generateCrosslink(codeWithMark), {
65+
checkLink(generateCrosslink(codeWithMark), {
6666
//language=kotlin
67-
code: `fun containsEven(collection: Collection<Int>): Boolean = collection.any {TODO()}`
67+
code: `fun containsEven(collection: Collection<Int>): Boolean = collection.any {TODO()}`,
6868
});
6969
});
7070

yarn.lock

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5893,6 +5893,15 @@ postcss@^8.4.21:
58935893
picocolors "^1.0.0"
58945894
source-map-js "^1.0.2"
58955895

5896+
postcss@^8.4.31:
5897+
version "8.4.31"
5898+
resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.4.31.tgz#92b451050a9f914da6755af352bdc0192508656d"
5899+
integrity sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ==
5900+
dependencies:
5901+
nanoid "^3.3.6"
5902+
picocolors "^1.0.0"
5903+
source-map-js "^1.0.2"
5904+
58965905
posthtml-parser@^0.2.0:
58975906
version "0.2.1"
58985907
resolved "https://registry.yarnpkg.com/posthtml-parser/-/posthtml-parser-0.2.1.tgz#35d530de386740c2ba24ff2eb2faf39ccdf271dd"

0 commit comments

Comments
 (0)