Skip to content
This repository has been archived by the owner on Mar 9, 2023. It is now read-only.

Commit

Permalink
Remove tsBuildInfoFile (#98)
Browse files Browse the repository at this point in the history
  • Loading branch information
ljmotta authored Sep 2, 2021
1 parent b6f2969 commit 88d7a86
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 5 deletions.
2 changes: 1 addition & 1 deletion examples/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"uniforms-bridge-json-schema": "3.5.1",
"uniforms-bridge-simple-schema": "3.5.1",
"uniforms-bridge-simple-schema-2": "3.5.1",
"uniforms-patternfly": "4.7.2"
"uniforms-patternfly": "4.7.3"
},
"devDependencies": {
"parcel-bundler": "^1.12.5",
Expand Down
12 changes: 11 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,22 @@
{
"name": "uniforms-patternfly",
"version": "4.7.2",
"version": "4.7.3",
"description": "Patternfly forms for uniforms",
"repository": "git@github.com:aerogear/uniforms-patternfly.git",
"author": "Gianluca <gzuccare@redhat.com>",
"license": "Apache-2.0",
"main": "dist/es5/index.js",
"module": "dist/esm/index.js",
"files": [
"dist/es5/*.d.ts",
"dist/es5/*.js",
"dist/esm/*.d.ts",
"dist/esm/*.js",
"dist/es6/*.d.ts",
"dist/es6/*.js",
"src/*.ts",
"src/*.tsx"
],
"scripts": {
"build": "tsc --build --incremental tsconfig.build.json",
"buildProd": "tsc --build tsconfig.build.json",
Expand Down
1 change: 0 additions & 1 deletion tsconfig.es5.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,5 @@
"outDir": "dist/es5",
"rootDir": "src",
"target": "es5",
"tsBuildInfoFile": "node_modules/.cache/uniforms-patternfly.es5.tsbuildinfo"
}
}
1 change: 0 additions & 1 deletion tsconfig.es6.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
"outDir": "dist/es6",
"rootDir": "src",
"target": "es6",
"tsBuildInfoFile": "node_modules/.cache/uniforms-patternfly.es6.tsbuildinfo"
},
"include": ["src"]
}
1 change: 0 additions & 1 deletion tsconfig.esm.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
"rootDir": "src",
"target": "es5",
"module": "es6",
"tsBuildInfoFile": "node_modules/.cache/uniforms-patternfly.esm.tsbuildinfo"
},
"include": ["src"]
}

0 comments on commit 88d7a86

Please sign in to comment.