Skip to content

Commit df5a373

Browse files
committed
chore: simplify demo setup
1 parent a715bbb commit df5a373

5 files changed

Lines changed: 13 additions & 8 deletions

File tree

demo/package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@
1414
"@angular/material": "catalog:",
1515
"@angular/platform-browser": "catalog:",
1616
"@angular/router": "catalog:",
17-
"angular-ecmascript-intl": "link:../dist/angular-ecmascript-intl",
1817
"marked": "catalog:",
1918
"ngx-markdown": "catalog:",
2019
"prismjs": "catalog:",

demo/tsconfig.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
/* To learn more about this file see: https://angular.io/config/tsconfig. */
22
{
3+
"extends": "../tsconfig.json",
34
"compileOnSave": false,
45
"compilerOptions": {
56
"outDir": "./dist/out-tsc",

package.json

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,9 @@
33
"version": "0.0.0",
44
"private": true,
55
"scripts": {
6-
"build-libs": "pnpm --filter ./libs/* build",
7-
"build": "pnpm build-libs && pnpm --filter demo build",
8-
"start": "pnpm build-libs && pnpm --filter demo start",
6+
"build": "pnpm --filter demo build",
7+
"start": "pnpm --filter demo start",
98
"test": "pnpm -r test",
10-
"prelint": "pnpm build-libs",
119
"lint": "oxlint . && eslint . --ext .html",
1210
"release": "release-it",
1311
"format": "oxfmt",

pnpm-lock.yaml

Lines changed: 0 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

tsconfig.json

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
{
2+
"compilerOptions": {
3+
"rootDir": ".",
4+
"paths": {
5+
"angular-ecmascript-intl": [
6+
"./libs/angular-ecmascript-intl/src/public-api.ts"
7+
]
8+
}
9+
}
10+
}

0 commit comments

Comments
 (0)