Skip to content
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
6 changes: 2 additions & 4 deletions .github/workflows/code-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@ name: CI

on:
pull_request:
push:
branches: [main]

jobs:
verify:
Expand All @@ -25,8 +23,8 @@ jobs:
- name: Install root dependencies
run: npm ci

- name: Verify root package
run: npm run verify:root
- name: Verify icons library package
run: npm run generate:icons && npm run verify:root

- name: Install showcase dependencies
run: npm ci
Expand Down
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,8 @@
"dev:playground": "vite",
"dev:showcase": "cd showcase && npm run dev",
"clean": "rimraf --glob dist && rimraf --glob lib/icons/*.tsx",
"build": "npm run clean && tsx ./lib/scripts/build.ts && tsc --p ./tsconfig-build.json && vite build",
"generate:icons": "tsx ./lib/scripts/build.ts",
"build": "npm run clean && npm run generate:icons && tsc --p ./tsconfig-build.json && vite build",
"build:showcase": "cd showcase && npm run build",
"format": "prettier --write .",
"format:check": "prettier --check .",
Expand Down
2 changes: 1 addition & 1 deletion playground/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import {
PnpmDark,
PnpmDarkWordmark,
PnpmLightWordmark,
} from "../dist/main";
} from "../lib/main";
import "./App.css";

function App() {
Expand Down
2 changes: 1 addition & 1 deletion showcase/src/components/ui/iconCard.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// import * as DI from "../../../../dist/main";
// import * as DI from "../../../../lib/main";
import * as DI from "developer-icons";
import React, { useEffect, useState, type ReactNode } from "react";
import { Copy, Copyright, Download } from "lucide-react";
Expand Down
Loading