monaco-yql-languages 1.0.2 → 1.0.3
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.
|
@@ -9,13 +9,8 @@ jobs:
|
|
|
9
9
|
if: github.repository == 'ydb-platform/monaco-yql-languages'
|
|
10
10
|
runs-on: ubuntu-latest
|
|
11
11
|
steps:
|
|
12
|
-
- uses:
|
|
13
|
-
- uses: actions/setup-node@v3
|
|
12
|
+
- uses: gravity-ui/release-action@v1
|
|
14
13
|
with:
|
|
14
|
+
github-token: ${{ secrets.YDB_PLATFORM_BOT_TOKEN_REPO }}
|
|
15
|
+
npm-token: ${{ secrets.NODE_AUTH_TOKEN }}
|
|
15
16
|
node-version: 18
|
|
16
|
-
- run: npm ci
|
|
17
|
-
- run: npm run lint
|
|
18
|
-
- uses: GoogleCloudPlatform/release-please-action@v3
|
|
19
|
-
with:
|
|
20
|
-
token: ${{ secrets.YDB_PLATFORM_BOT_TOKEN_REPO }}
|
|
21
|
-
release-type: node
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [1.0.3](https://github.com/ydb-platform/monaco-yql-languages/compare/v1.0.2...v1.0.3) (2024-07-23)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* add script for tests ([#14](https://github.com/ydb-platform/monaco-yql-languages/issues/14)) ([d75deb6](https://github.com/ydb-platform/monaco-yql-languages/commit/d75deb60232f388aa331842e7576cf5cfb65f247))
|
|
9
|
+
* fix github actions ([#13](https://github.com/ydb-platform/monaco-yql-languages/issues/13)) ([5c88dae](https://github.com/ydb-platform/monaco-yql-languages/commit/5c88daed8a89901e2875eec364e0d757f4350e1a))
|
|
10
|
+
|
|
3
11
|
## [1.0.2](https://github.com/ydb-platform/monaco-yql-languages/compare/v1.0.1...v1.0.2) (2024-07-23)
|
|
4
12
|
|
|
5
13
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "monaco-yql-languages",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.3",
|
|
4
4
|
"description": "YQL languages for the Monaco Editor, based on monaco-languages.",
|
|
5
5
|
"author": "YDB",
|
|
6
6
|
"license": "MIT",
|
|
@@ -16,7 +16,8 @@
|
|
|
16
16
|
"lint:other": "npm run prettier -- --check ",
|
|
17
17
|
"prettier": "prettier \"**/*.{md,yaml,yml}\"",
|
|
18
18
|
"typecheck": "tsc --noEmit",
|
|
19
|
-
"prepublishOnly": "npm run lint && npm run build"
|
|
19
|
+
"prepublishOnly": "npm run lint && npm run build",
|
|
20
|
+
"test": "echo \"Error: no test specified\" && exit 0"
|
|
20
21
|
},
|
|
21
22
|
"repository": {
|
|
22
23
|
"type": "git",
|
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
on:
|
|
2
|
-
release:
|
|
3
|
-
types: [released]
|
|
4
|
-
|
|
5
|
-
name: Publication
|
|
6
|
-
|
|
7
|
-
jobs:
|
|
8
|
-
publication:
|
|
9
|
-
runs-on: ubuntu-latest
|
|
10
|
-
env:
|
|
11
|
-
ASSET_NAME: embedded-ui
|
|
12
|
-
steps:
|
|
13
|
-
- uses: actions/checkout@v4
|
|
14
|
-
- uses: actions/setup-node@v4
|
|
15
|
-
with:
|
|
16
|
-
node-version: 18
|
|
17
|
-
registry-url: https://registry.npmjs.org
|
|
18
|
-
- run: npm ci
|
|
19
|
-
- run: npm publish
|
|
20
|
-
env:
|
|
21
|
-
NODE_AUTH_TOKEN: ${{ secrets.NODE_AUTH_TOKEN }}
|