Giter VIP home page Giter VIP logo

Comments (6)

WHenderson avatar WHenderson commented on July 24, 2024

I am currently working two jobs, so I can't offer my time atm, but I setup npl publishing with github actions and a pnpm mono repo for my stuff.
Take a look at https://github.com/WHenderson/stores-mono if its helpful. No guarantee I've done things correctly, but it does seem work work 😄

from lucia.

pilcrowOnPaper avatar pilcrowOnPaper commented on July 24, 2024

@WHenderson Will look into it, thanks!

from lucia.

WHenderson avatar WHenderson commented on July 24, 2024

Feel free to contact me if you have any questions. You're library is an excellent contribution to the community 😊

from lucia.

danawoodman avatar danawoodman commented on July 24, 2024

We've had success with Changesets and TurboRepo managing our releases, is this of interest?

from lucia.

pilcrowOnPaper avatar pilcrowOnPaper commented on July 24, 2024

@WHenderson @danawoodman

Thanks the comments! I've been talking with someone on discord that's currently working on it, not sure what their Github account it. Will notify here when a PR gets opened though!

from lucia.

danawoodman avatar danawoodman commented on July 24, 2024

in case it helps, here is out release Github Action for changsets:

name: Release

on:
  push:
    branches: ["main"]

jobs:
  release:
    # prevents this action from running on forks
    if: github.repository == 'pilcrowOnPaper/lucia-sveltekit'
    name: Release
    timeout-minutes: 15
    runs-on: ubuntu-latest
    steps:
      - name: Checkout Repo
        uses: actions/checkout@v3
        with:
          # This makes Actions fetch all Git history so that Changesets can generate
          # changelogs with the correct commits
          fetch-depth: 0
      - name: Setup Node.js
        uses: actions/setup-node@v3
        with:
          node-version: 17.x
          cache: "npm"
      - name: Cache node modules
        id: cache-npm
        uses: actions/cache@v3
        env:
          cache-name: cache-node-modules
        with:
          # npm cache files are stored in `~/.npm` on Linux/macOS
          path: ~/.npm
          key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json') }}
          restore-keys: |
            ${{ runner.os }}-build-${{ env.cache-name }}-
            ${{ runner.os }}-build-
            ${{ runner.os }}-
      - name: Install dependencies
        run: npm install --frozen-lockfile
      - name: Build
        run: npm run build
      - name: Create release pull request or publish to npm
        id: changesets
        uses: changesets/action@v1
        with:
          # This expects you to have a script called release which does a build for your
          # packages and calls changeset publish
          publish: npm run release
        env:
          GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
          NPM_TOKEN: ${{ secrets.NPM_TOKEN }}

from lucia.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.