Skip to content

Commit 53351b4

Browse files
pqnCopybara Bot
andauthored
Bring to head of internal repo (#22)
* Project import generated by Copybara. GitOrigin-RevId: 6c2f5348dfdfd30ec308ff0d2cc596b53a4172cb * Update script.ts --------- Co-authored-by: Copybara Bot <[email protected]>
1 parent b25c800 commit 53351b4

File tree

6 files changed

+68
-68
lines changed

6 files changed

+68
-68
lines changed

generate.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ const { execSync } = require('child_process');
33
require('dotenv').config();
44
if (process.env.CODEIUM_ENV === 'monorepo') {
55
execSync(
6-
'npx buf generate ../../.. --path ../../codeium_common_pb/codeium_common.proto --path ../../language_server_pb/language_server.proto --path ../../chat_pb/chat.proto --path ../../language_server/diff_action_pb/diff_action.proto'
6+
'npx buf generate ../../.. --path ../../language_server_pb/language_server.proto --include-imports'
77
);
88
} else {
99
execSync('npx buf generate');

package-lock.json

Lines changed: 63 additions & 63 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "chrome-extension-webpack",
3-
"version": "1.2.40",
3+
"version": "1.2.52",
44
"description": "Get started with Chrome extensions development using webpack, Typescript, Sass, and more",
55
"scripts": {
66
"generate": "rm -rf ./proto && node generate.js",

src/common.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import {
1313
} from '../proto/exa/language_server_pb/language_server_pb';
1414

1515
const EXTENSION_NAME = 'chrome';
16-
const EXTENSION_VERSION = '1.2.40';
16+
const EXTENSION_VERSION = '1.2.52';
1717

1818
export const CODEIUM_DEBUG = false;
1919

static/manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "Codeium: AI Code Autocompletion on all IDEs",
33
"description": "Your modern coding superpower. Get code completions in Colab and more.",
4-
"version": "1.2.40",
4+
"version": "1.2.52",
55
"manifest_version": 3,
66
"background": {
77
"service_worker": "serviceWorker.js"

tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,5 @@
99
"strict": true,
1010
"allowSyntheticDefaultImports": true
1111
},
12-
"include": ["src/**/*"]
12+
"include": ["src/**/*", "proto/**/*"]
1313
}

0 commit comments

Comments
 (0)