Skip to content

Commit 8882d19

Browse files
release: extension v2.0.78 mcp-server v2.4.6 lsp-server v1.0.1
1 parent dc9f7c6 commit 8882d19

3 files changed

Lines changed: 56 additions & 15 deletions

File tree

packages/extension/package.json

Lines changed: 35 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "airtable-formula",
33
"private": true,
4-
"version": "2.0.77",
4+
"version": "2.0.78",
55
"publisher": "Nskha",
66
"displayName": "Airtable Formulas, Scripts, Automation, MCP & LSP",
77
"description": "Airtable formula, script & automation editor with MCP server (63 tools), language server, and AI skills for VS Code.",
@@ -80,8 +80,14 @@
8080
},
8181
{
8282
"id": "airtable-script",
83-
"aliases": ["Airtable Script", "script"],
84-
"extensions": [".script", ".ats"],
83+
"aliases": [
84+
"Airtable Script",
85+
"script"
86+
],
87+
"extensions": [
88+
".script",
89+
".ats"
90+
],
8591
"configuration": "./language-configuration/airtable-script-language-configuration.json",
8692
"icon": {
8793
"light": "./icons/script-light.svg",
@@ -90,8 +96,14 @@
9096
},
9197
{
9298
"id": "airtable-automation",
93-
"aliases": ["Airtable Automation", "automation"],
94-
"extensions": [".automation", ".ata"],
99+
"aliases": [
100+
"Airtable Automation",
101+
"automation"
102+
],
103+
"extensions": [
104+
".automation",
105+
".ata"
106+
],
95107
"configuration": "./language-configuration/airtable-automation-language-configuration.json",
96108
"icon": {
97109
"light": "./icons/automation-light.svg",
@@ -568,7 +580,13 @@
568580
"airtableFormula.script.beautifyStyle": {
569581
"type": "string",
570582
"default": "default",
571-
"enum": ["default", "compact", "singleQuote", "tabIndent", "semicolonFree"],
583+
"enum": [
584+
"default",
585+
"compact",
586+
"singleQuote",
587+
"tabIndent",
588+
"semicolonFree"
589+
],
572590
"enumDescriptions": [
573591
"Prettier defaults: 2-space indent, double quotes, trailing commas",
574592
"printWidth: 120, no trailing commas",
@@ -581,7 +599,12 @@
581599
"airtableFormula.script.minifyLevel": {
582600
"type": "string",
583601
"default": "standard",
584-
"enum": ["safe", "standard", "aggressive", "extreme"],
602+
"enum": [
603+
"safe",
604+
"standard",
605+
"aggressive",
606+
"extreme"
607+
],
585608
"enumDescriptions": [
586609
"Whitespace removal only — no mangle, no compress",
587610
"compress: true, mangle: false (good balance)",
@@ -618,7 +641,11 @@
618641
"airtableFormula.script.prettier.trailingComma": {
619642
"type": "string",
620643
"default": "all",
621-
"enum": ["all", "es5", "none"],
644+
"enum": [
645+
"all",
646+
"es5",
647+
"none"
648+
],
622649
"description": "Prettier trailingComma for Script/Automation beautifier."
623650
},
624651
"airtableFormula.script.terser.mangle": {

packages/lsp-server/package.json

Lines changed: 20 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,33 @@
11
{
22
"name": "airtable-user-lsp",
3-
"version": "1.0.0",
3+
"version": "1.0.1",
44
"description": "Airtable language server for formula, script, and automation files. Works with any LSP-capable editor.",
55
"type": "module",
66
"main": "dist/index.mjs",
7-
"bin": { "airtable-user-lsp": "dist/index.mjs" },
8-
"engines": { "node": ">=20" },
9-
"files": ["dist/**", "README.md", "LICENSE"],
10-
"publishConfig": { "access": "public", "provenance": true },
7+
"bin": {
8+
"airtable-user-lsp": "dist/index.mjs"
9+
},
10+
"engines": {
11+
"node": ">=20"
12+
},
13+
"files": [
14+
"dist/**",
15+
"README.md",
16+
"LICENSE"
17+
],
18+
"publishConfig": {
19+
"access": "public",
20+
"provenance": true
21+
},
1122
"repository": {
1223
"type": "git",
1324
"url": "git+https://github.com/Automations-Project/VSCode-Airtable-Formula.git",
1425
"directory": "packages/lsp-server"
1526
},
16-
"author": { "name": "Nskha", "url": "https://github.com/automations-Project" },
27+
"author": {
28+
"name": "Nskha",
29+
"url": "https://github.com/automations-Project"
30+
},
1731
"license": "MIT",
1832
"scripts": {
1933
"build": "tsup",

packages/mcp-server/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "airtable-user-mcp",
3-
"version": "2.4.5",
3+
"version": "2.4.6",
44
"mcpName": "io.github.Automations-Project/airtable-user-mcp",
55
"description": "Community MCP server for Airtable. Schema inspection, table / field / view CRUD (including merge-safe filter / sort / group updates), formula validation, and extension management. Not affiliated with Airtable Inc.",
66
"main": "src/index.js",

0 commit comments

Comments
 (0)