Skip to content

Commit

Permalink
some fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
mtnbarreto committed Jun 9, 2023
1 parent e2b6813 commit e64afca
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 18 deletions.
11 changes: 3 additions & 8 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,8 @@
# chrome-extension-project
# chrome-extension-app

## 0.1.1
## 0.0.1

### Patch Changes

- Testing changeset
- Open source project

## 0.1.0

### Minor Changes

- WIP first version
6 changes: 3 additions & 3 deletions manifest.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ const [major, minor, patch, label = '0'] = version
export default defineManifest(async (env) => ({
name:
env.mode === 'staging'
? '[INTERNAL] RookieRep.ai'
: 'RookieRep.ai - AI powered sales autopilot',
description: 'RookieRep.ai - sales bla bla bla',
? '[INTERNAL] chrome-extension-app'
: 'chrome-extension-app',
description: 'chrome-extension-app - <description>',
version: `${major}.${minor}.${patch}.${label}`,
version_name: version,
icons: {
Expand Down
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
{
"name": "chrome-extension-project",
"name": "chrome-extension-app",
"private": true,
"version": "0.1.1",
"version": "0.0.1",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vue-tsc && vite build",
"preview": "vite preview",
"release": "publish-extension --chrome-zip \"artifacts/rookierep-ai.zip\" --chrome-extension-id \"$CHROME_EXTENSION_ID\" --chrome-client-id \"$CHROME_CLIENT_ID\" --chrome-client-secret \"$CHROME_CLIENT_SECRET\" --chrome-refresh-token \"$CHROME_REFRESH_TOKEN\"",
"release:cli": "source .env && publish-extension --chrome-zip \"artifacts/rookierep-ai.zip\" --chrome-extension-id \"$CHROME_EXTENSION_ID\" --chrome-client-id \"$CHROME_CLIENT_ID\" --chrome-client-secret \"$CHROME_CLIENT_SECRET\" --chrome-refresh-token \"$CHROME_REFRESH_TOKEN\"",
"release": "publish-extension --chrome-zip \"artifacts/chrome-extension-app.zip\" --chrome-extension-id \"$CHROME_EXTENSION_ID\" --chrome-client-id \"$CHROME_CLIENT_ID\" --chrome-client-secret \"$CHROME_CLIENT_SECRET\" --chrome-refresh-token \"$CHROME_REFRESH_TOKEN\"",
"release:cli": "source .env && publish-extension --chrome-zip \"artifacts/chrome-extension-app.zip\" --chrome-extension-id \"$CHROME_EXTENSION_ID\" --chrome-client-id \"$CHROME_CLIENT_ID\" --chrome-client-secret \"$CHROME_CLIENT_SECRET\" --chrome-refresh-token \"$CHROME_REFRESH_TOKEN\"",
"format": "rome format . --write",
"lint": "rome check .",
"lint:fix": "npm run lint --apply",
Expand Down
2 changes: 1 addition & 1 deletion src/pages/increment/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ h1 {

button {
border-radius: 8px;
border: 1px solid transparent;
border: 1px solid #e5e7eb;
padding: 0.6em 1.2em;
font-size: 1em;
font-weight: 500;
Expand Down
2 changes: 1 addition & 1 deletion src/publish.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { publishExtension } from 'publish-browser-extension'
publishExtension({
dryRun: true,
chrome: {
zip: 'artifacts/rookierep-ai.zip',
zip: 'artifacts/chrome-extension-app.zip',
extensionId: '',
clientId: process.env.CHROME_CLIENT_ID as string,
clientSecret: process.env.CHROME_CLIENT_SECRET as string,
Expand Down
2 changes: 1 addition & 1 deletion vite.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ export default defineConfig({
zipPack({
inDir: 'dist',
outDir: 'artifacts',
outFileName: 'rookierep-ai.zip',
outFileName: 'chrome-extension-app.zip',
}),
],
})

0 comments on commit e64afca

Please sign in to comment.