Skip to content

Commit

Permalink
fixed last remaining errors
Browse files Browse the repository at this point in the history
  • Loading branch information
CEbbinghaus committed Oct 26, 2023
1 parent d1f9482 commit 8837169
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 5 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,11 +63,15 @@ jobs:
with:
node-version: 18
registry-url: https://npm.pkg.github.com/

- uses: pnpm/action-setup@v2
with:
version: 8.5.1
- run: pnpm install
- run: pnpm build
- run: |
cd lib
pnpm install
pnpm build
- run: npm publish
env:
NODE_AUTH_TOKEN: ${{secrets.GITHUB_TOKEN}}
Expand Down
6 changes: 4 additions & 2 deletions lib/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,13 @@
"keywords": [],
"author": "CEbbinghaus",
"license": "GPLv2",

"main": "dist/index.js",
"typings": "dist/types/index.d.ts",
"typings": "dist/index.d.ts",
"files": [
"src"
"dist"
],

"scripts": {
"build": "tsc"
},
Expand Down
2 changes: 1 addition & 1 deletion rollup.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import typescript from '@rollup/plugin-typescript';
import { defineConfig } from 'rollup';
import importAssets from 'rollup-plugin-import-assets';

import { name } from "../plugin.json";
import { name } from "./plugin.json";

export default defineConfig({
input: './src/index.tsx',
Expand Down

0 comments on commit 8837169

Please sign in to comment.