-
Notifications
You must be signed in to change notification settings - Fork 4.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ae60c7d
commit 11d4acc
Showing
16 changed files
with
185 additions
and
158 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -47,3 +47,6 @@ api-generator/themedoc.json | |
.nx | ||
|
||
builder/node_modules | ||
|
||
# primeng packages | ||
packages/core/src/package.json |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,15 +12,17 @@ | |
"url": "https://github.com/primefaces/primeng/issues" | ||
}, | ||
"scripts": { | ||
"setup": "rm -rf **/node_modules **/dist ./pnpm-lock.yaml && pnpm run init", | ||
"setup": "rm -rf **/node_modules **/dist **/.angular ./pnpm-lock.yaml && pnpm run init", | ||
"init": "pnpm install && husky", | ||
"link": "pnpm --filter './packages/*' dev:link", | ||
"release": "pnpm run build && pnpm recursive publish --filter './packages/*' --no-git-checks --report-summary", | ||
"release:beta": "pnpm run build && pnpm recursive publish --filter './packages/*' --no-git-checks --report-summary --tag beta", | ||
"release:rc": "pnpm run build && pnpm recursive publish --filter './packages/*' --no-git-checks --report-summary --tag rc", | ||
"build": "NODE_ENV=production pnpm run build:check && pnpm run build:packages", | ||
"build:check": "pnpm run format:check && pnpm run security:check", | ||
"build:packages": "pnpm run build:lib && pnpm run build:themes && pnpm run build:showcase", | ||
"build:packages": "pnpm --filter core build && pnpm --filter icons build && pnpm run build:lib && pnpm run build:themes && pnpm run build:showcase", | ||
"build:core": "pnpm --filter core build", | ||
"build:icons": "pnpm --filter icons build", | ||
"build:lib": "pnpm --filter primeng build", | ||
"build:themes": "pnpm --filter themes build", | ||
"build:showcase": "pnpm --filter showcase build", | ||
|
@@ -71,6 +73,9 @@ | |
"access": "public" | ||
}, | ||
"packageManager": "[email protected]", | ||
"engines": { | ||
"node": ">=12.11.0" | ||
}, | ||
"lint-staged": { | ||
"**/*.{js,mjs,ts,mts,d.ts,json,html}": ["prettier --write"] | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,5 +16,8 @@ | |
} | ||
} | ||
} | ||
}, | ||
"cli": { | ||
"analytics": false | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
import fs from 'fs-extra'; | ||
import path from 'path'; | ||
import { resolvePath } from '../../../scripts/build-helper.mjs'; | ||
|
||
const { __dirname, __workspace, OUTPUT_DIR } = resolvePath(import.meta.url); | ||
|
||
fs.copySync(path.resolve(__dirname, '../README.md'), `${OUTPUT_DIR}/README.md`); | ||
fs.copySync(path.resolve(__workspace, './LICENSE.md'), `${OUTPUT_DIR}/LICENSE.md`); |
Oops, something went wrong.