Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fixes #12 and enhancements #62

Merged
merged 7 commits into from
Nov 27, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
67 changes: 67 additions & 0 deletions .github/workflows/preview-publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,67 @@
name: Publish Experimental Release
on:
pull_request:
branches:
- main
permissions:
contents: write # Required for publishing releases
jobs:
experimental-release:
name: Experimental Dev Release
runs-on: ubuntu-latest
permissions:
contents: write # For publishing to GitHub releases
id-token: write # For npm provenance
steps:
# Step 1: Checkout the repository
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 0

# Step 2: Setup Node.js environment
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: "lts/*"
cache: "npm"

# Step 3: Configure npm for authentication
- name: Configure npm for Authentication
run: |
echo "//registry.npmjs.org/:_authToken=${{ secrets.NPM_NUXT_TOKEN }}" >> ~/.npmrc
echo "@prisma:registry=https://registry.npmjs.org/" >> ~/.npmrc

# Step 4: Install dependencies
- name: Install Dependencies
run: npm clean-install

# Step 5: Prepare project
- name: Prepare Project
run: npx nuxi prepare

# Step 6: Build project
- name: Build Project
run: npm run dev:build

# Step 7: Lint the code
- name: Lint Code
run: npm run lint

# Step 8: Prepack the project
- name: Prepack
run: npm run prepack

# Step 9: Audit dependencies
- name: Audit Dependencies
run: npm audit signatures

# Step 10: Set experimental version
- name: Set Experimental Version
run: npm version --no-git-tag-version 0.0.0-experimental-${GITHUB_SHA::7}

# Step 11: Publish Experimental Release
- name: Publish Experimental Release
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_NUXT_TOKEN }}
run: npm publish --access public --tag experimental
19 changes: 7 additions & 12 deletions src/module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -88,10 +88,12 @@ export default defineNuxtModule<PrismaExtendedModule>({
addServerImportsDir(resolver(runtimeDir, "utils"));
addServerImportsDir(resolver(runtimeDir, "server/utils"));

nuxt.options.vite.optimizeDeps ||= {};
nuxt.options.vite.optimizeDeps = {
include: ["@prisma/nuxt > @prisma/client"],
};
nuxt.options.vite.optimizeDeps = defu(
nuxt.options.vite.optimizeDeps || {},
{
include: ["@prisma/nuxt > @prisma/client"],
},
);
};

const force_skip_prisma_setup =
Expand Down Expand Up @@ -212,14 +214,7 @@ export default defineNuxtModule<PrismaExtendedModule>({
return;
}

const promptResults = await executeRequiredPrompts({
promptForMigrate: false && !skip_all_prompts,
promptForPrismaStudio: true && !skip_all_prompts,
});

if (promptResults?.promptForInstallingStudio) {
await installAndStartPrismaStudio();
}
await installAndStartPrismaStudio();
};

if (!prismaSchemaExists) {
Expand Down
Loading