Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: allows package to be pulled in as github dependency #1347

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
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
7 changes: 1 addition & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,6 @@
"homepage": "https://gridjs.io",
"repository": "https://github.com/grid-js/gridjs",
"types": "dist/index.d.ts",
"files": [
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why are we removing these lines?

"dist/*",
"dist/theme/*",
"l10n/dist/*",
"plugins/!(node_modules)/dist/*"
],
"exports": {
".": {
"browser": "./dist/gridjs.module.js",
Expand Down Expand Up @@ -103,6 +97,7 @@
"install:plugins": "find ./plugins ! -path '*/node_modules/*' ! -path './package.json' -name 'package.json' -execdir npm install \\;",
"clean": "rimraf coverage dist tmp l10n/dist 'plugins/!(node_modules)/dist'",
"prebuild": "npm run clean",
"prepare": "run-s install:plugins build",
"build": "run-p build:grid build:i18n build:plugins build:themes",
"build:grid": "microbundle build --raw --external none --tsconfig tsconfig.release.json",
"build:i18n": "microbundle build --raw --cwd l10n --tsconfig l10n/tsconfig.release.json",
Expand Down