Skip to content

Commit

Permalink
Merge pull request #7 from 99x-incubator/chore/dev-improvements
Browse files Browse the repository at this point in the history
chore: dev-improvements
  • Loading branch information
hasith authored Sep 10, 2024
2 parents b2175ab + d3d493f commit 550bf68
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 4 deletions.
7 changes: 7 additions & 0 deletions docs/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
_site/
.sass-cache/
.jekyll-cache/
.jekyll-metadata
# Ignore folders generated by Bundler
.bundle/
vendor/
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"$schema": "node_modules/lerna/schemas/lerna-schema.json",
"version": "0.0.0",
"packages": ["packages/*"],
"packages": ["packages/**"],
"npmClient": "npm"
}
3 changes: 2 additions & 1 deletion packages/@productled/core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@
"scripts": {
"build": "tsc",
"test": "jest",
"clean": "rm -rf dist"
"clean": "rm -rf dist",
"watch": "tsc -w"
},
"devDependencies": {
"@types/jest": "^29.5.12",
Expand Down
3 changes: 2 additions & 1 deletion packages/@productled/spotlight/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@
"scripts": {
"build": "tsc",
"test": "jest",
"clean": "rm -rf dist"
"clean": "rm -rf dist",
"watch": "tsc -w"
},
"dependencies": {
"@productled/tooltip": "^1.0.0"
Expand Down
3 changes: 2 additions & 1 deletion packages/@productled/tooltip/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@
"scripts": {
"build": "tsc",
"test": "jest",
"clean": "rm -rf dist"
"clean": "rm -rf dist",
"watch": "tsc -w"
},
"dependencies": {

Expand Down
1 change: 1 addition & 0 deletions packages/samples/react-sample/src/App.tsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import React from "react";
import { BrowserRouter as Router, Route, Routes } from 'react-router-dom';
import './App.css';
import Page from './Page'; // Import the existing page component
Expand Down

0 comments on commit 550bf68

Please sign in to comment.