monaco-yql-languages 1.0.3 → 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 +1 -1
- package/.prettierignore +1 -2
- package/.prettierignore copy +1 -1
- package/CHANGELOG.md +7 -0
- package/package.json +1 -1
- package/tsconfig.json +3 -10
package/.eslintignore
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
build/
|
package/.prettierignore
CHANGED
package/.prettierignore copy
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
|
|
1
|
+
build/
|
|
2
2
|
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
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
|
+
|
|
3
10
|
## [1.0.3](https://github.com/ydb-platform/monaco-yql-languages/compare/v1.0.2...v1.0.3) (2024-07-23)
|
|
4
11
|
|
|
5
12
|
|
package/package.json
CHANGED
package/tsconfig.json
CHANGED
|
@@ -3,17 +3,10 @@
|
|
|
3
3
|
"compilerOptions": {
|
|
4
4
|
"declaration": true,
|
|
5
5
|
"resolveJsonModule": true,
|
|
6
|
-
"outDir": "
|
|
6
|
+
"outDir": "build",
|
|
7
7
|
"module": "esnext",
|
|
8
8
|
"jsx": "react"
|
|
9
9
|
},
|
|
10
|
-
"include": [
|
|
11
|
-
|
|
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
|
}
|