Skip to content

Commit

Permalink
chore: changeset
Browse files Browse the repository at this point in the history
  • Loading branch information
jungpaeng committed Oct 1, 2023
1 parent b770c6f commit 9cc249a
Show file tree
Hide file tree
Showing 147 changed files with 2,826 additions and 24 deletions.
11 changes: 11 additions & 0 deletions .changeset/config.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"$schema": "https://unpkg.com/@changesets/[email protected]/schema.json",
"changelog": "@changesets/cli/changelog",
"commit": false,
"fixed": [],
"linked": [],
"access": "restricted",
"baseBranch": "main",
"updateInternalDependencies": "patch",
"ignore": []
}
5 changes: 5 additions & 0 deletions .changeset/warm-donuts-lie.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'lit-intl': patch
---

Init package
25 changes: 25 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Release

on:
push:
branches:
- main

jobs:
release:
name: Release
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install Unplugged Packages
run: yarn install --immutable --immutable-cache
- name: Package Build
run: yarn build
- name: Package Release
id: changesets
uses: cometkim/yarn-changeset-action@v1
with:
autoPublish: true
env:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
20 changes: 20 additions & 0 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
.changeset
.github
.vscode
.yarn

node_modules
src
test

.eslintrc.js
.gitignore
.npmignore
.prettierrc
.pnp.cjs
.pnp.loader.mjs
.yarnrc.yml

esbuild.config.cjs
tsconfig.json
vitest.config.ts
Loading

0 comments on commit 9cc249a

Please sign in to comment.