monaco-yql-languages 1.0.2 → 1.0.4

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/.eslintignore CHANGED
@@ -1 +1 @@
1
- dist/
1
+ build/
@@ -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: actions/checkout@v3
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/.prettierignore CHANGED
@@ -1,4 +1,3 @@
1
- storybook-static
2
- dist
1
+ build
3
2
  CHANGELOG.md
4
3
  CONTRIBUTING.md
@@ -1,2 +1,2 @@
1
- dist/
1
+ build/
2
2
 
package/CHANGELOG.md CHANGED
@@ -1,5 +1,20 @@
1
1
  # Changelog
2
2
 
3
+ ## [1.0.4](https://github.com/ydb-platform/monaco-yql-languages/compare/v1.0.3...v1.0.4) (2024-07-23)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * build folder ([#16](https://github.com/ydb-platform/monaco-yql-languages/issues/16)) ([3aedfdd](https://github.com/ydb-platform/monaco-yql-languages/commit/3aedfddbffba4705ec9a4c25b065c2162e46029d))
9
+
10
+ ## [1.0.3](https://github.com/ydb-platform/monaco-yql-languages/compare/v1.0.2...v1.0.3) (2024-07-23)
11
+
12
+
13
+ ### Bug Fixes
14
+
15
+ * 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))
16
+ * 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))
17
+
3
18
  ## [1.0.2](https://github.com/ydb-platform/monaco-yql-languages/compare/v1.0.1...v1.0.2) (2024-07-23)
4
19
 
5
20
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "monaco-yql-languages",
3
- "version": "1.0.2",
3
+ "version": "1.0.4",
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",
package/tsconfig.json CHANGED
@@ -3,17 +3,10 @@
3
3
  "compilerOptions": {
4
4
  "declaration": true,
5
5
  "resolveJsonModule": true,
6
- "outDir": "dist",
6
+ "outDir": "build",
7
7
  "module": "esnext",
8
8
  "jsx": "react"
9
9
  },
10
- "include": [
11
- "src/**/*.ts",
12
- "src/**/*.tsx"
13
- ],
14
- "exclude": [
15
- "**/__tests__",
16
- "**/*.test.ts",
17
- "**/*.test.tsx",
18
- ]
10
+ "include": ["src/**/*.ts", "src/**/*.tsx"],
11
+ "exclude": ["**/__tests__", "**/*.test.ts", "**/*.test.tsx"]
19
12
  }
@@ -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 }}