Skip to content

Commit

Permalink
Bring to head of internal repo (#22)
Browse files Browse the repository at this point in the history
* Project import generated by Copybara.

GitOrigin-RevId: 6c2f5348dfdfd30ec308ff0d2cc596b53a4172cb

* Update script.ts

---------

Co-authored-by: Copybara Bot <[email protected]>
  • Loading branch information
pqn and Copybara Bot authored Jul 18, 2023
1 parent b25c800 commit 53351b4
Show file tree
Hide file tree
Showing 6 changed files with 68 additions and 68 deletions.
2 changes: 1 addition & 1 deletion generate.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ const { execSync } = require('child_process');
require('dotenv').config();
if (process.env.CODEIUM_ENV === 'monorepo') {
execSync(
'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'
'npx buf generate ../../.. --path ../../language_server_pb/language_server.proto --include-imports'
);
} else {
execSync('npx buf generate');
Expand Down
126 changes: 63 additions & 63 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "chrome-extension-webpack",
"version": "1.2.40",
"version": "1.2.52",
"description": "Get started with Chrome extensions development using webpack, Typescript, Sass, and more",
"scripts": {
"generate": "rm -rf ./proto && node generate.js",
Expand Down
2 changes: 1 addition & 1 deletion src/common.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import {
} from '../proto/exa/language_server_pb/language_server_pb';

const EXTENSION_NAME = 'chrome';
const EXTENSION_VERSION = '1.2.40';
const EXTENSION_VERSION = '1.2.52';

export const CODEIUM_DEBUG = false;

Expand Down
2 changes: 1 addition & 1 deletion static/manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "Codeium: AI Code Autocompletion on all IDEs",
"description": "Your modern coding superpower. Get code completions in Colab and more.",
"version": "1.2.40",
"version": "1.2.52",
"manifest_version": 3,
"background": {
"service_worker": "serviceWorker.js"
Expand Down
2 changes: 1 addition & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@
"strict": true,
"allowSyntheticDefaultImports": true
},
"include": ["src/**/*"]
"include": ["src/**/*", "proto/**/*"]
}

0 comments on commit 53351b4

Please sign in to comment.