Browse Source

Update ignores

Ignore node_modules files under packages.
tags/0.3.0
TheoryOfNekomata 3 years ago
parent
commit
2058df416e
3 changed files with 6 additions and 5 deletions
  1. +2
    -3
      .npmignore
  2. +2
    -2
      package.json
  3. +2
    -0
      tsconfig.json

+ 2
- 3
.npmignore View File

@@ -1,13 +1,10 @@
.docz/
coverage/ coverage/
lib/
plop/ plop/
utilities/ utilities/
.env .env
.env.example .env.example
.editorconfig .editorconfig
.prettierrc .prettierrc
doczrc.js
jest.config.js jest.config.js
jest.setup.ts jest.setup.ts
plopfile.js plopfile.js
@@ -16,3 +13,5 @@ tsconfig.json
yarn.lock yarn.lock
**/*.test.d.ts **/*.test.d.ts
*.log *.log
packages/
.idea/

+ 2
- 2
package.json View File

@@ -1,12 +1,12 @@
{ {
"name": "@tesseract-design/react-common", "name": "@tesseract-design/react-common",
"version": "0.2.2",
"version": "0.2.3",
"description": "Common front-end components for Web using the Tesseract design system, written in React.", "description": "Common front-end components for Web using the Tesseract design system, written in React.",
"directories": { "directories": {
"lib": "dist" "lib": "dist"
}, },
"main": "dist/index.js", "main": "dist/index.js",
"types": "dist/lib/index.d.ts",
"types": "dist/packages/react-common/src/index.d.ts",
"repository": "https://code.modal.sh/tesseract-design/react-common.git", "repository": "https://code.modal.sh/tesseract-design/react-common.git",
"author": "TheoryOfNekomata <allan.crisostomo@outlook.com>", "author": "TheoryOfNekomata <allan.crisostomo@outlook.com>",
"license": "MIT", "license": "MIT",


+ 2
- 0
tsconfig.json View File

@@ -26,6 +26,8 @@
"node_modules", "node_modules",
"**/*.test.ts", "**/*.test.ts",
"**/*.test.tsx", "**/*.test.tsx",
"packages/react-common-docs/**/*.ts",
"packages/react-common-docs/**/*.tsx",
"utilities/**/*", "utilities/**/*",
"jest.setup.ts" "jest.setup.ts"
] ]


Loading…
Cancel
Save