Skip to content

Commit 01575df

Browse files
committed
finally fixed build stuff
1 parent 98ad504 commit 01575df

File tree

8 files changed

+23
-19
lines changed

8 files changed

+23
-19
lines changed

docs/olli/adapters.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/olli/olli.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package-lock.json

+4-4
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/adapters/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
{
22
"name": "olli-adapters",
3-
"version": "2.0.1",
3+
"version": "2.0.2",
44
"description": "Visualization toolkit adapters for Olli, a library for converting web visualizations into accessible text structures for blind and low-vision screen reader users.",
55
"main": "./dist/adapters.js",
6-
"types": "../../dist/packages/adapters/src/index.d.ts",
6+
"types": "./dist/index.d.ts",
77
"scripts": {
88
"test": "echo \"Error: no test specified\" && exit 1",
99
"start": "webpack --config webpack.dev.js",
@@ -34,7 +34,7 @@
3434
"webpack": "^5.76.0"
3535
},
3636
"peerDependencies": {
37-
"olli": "^2.0.1"
37+
"olli": "^2.0.2"
3838
},
3939
"devDependencies": {
4040
"prettier": "2.8.8",

packages/adapters/tsconfig.json

+6-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
11
{
22
"extends": "../../tsconfig.json",
3-
"include": ["src/**/*.ts", "../../node_modules/"]
3+
"include": ["src/**/*.ts"],
4+
"exclude": ["../../node_modules"],
5+
"compilerOptions": {
6+
"rootDir": "src",
7+
"outDir": "dist"
8+
},
49
}

packages/core/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
{
22
"name": "olli",
3-
"version": "2.0.1",
3+
"version": "2.0.2",
44
"description": "Olli is a library for converting web visualizations into accessible text structures for blind and low-vision screen reader users.",
55
"main": "./dist/olli.js",
6-
"types": "../../dist/packages/core/src/index.d.ts",
6+
"types": "./dist/index.d.ts",
77
"scripts": {
88
"test": "echo \"Error: no test specified\" && exit 1",
99
"start": "webpack --config webpack.dev.js",

packages/core/tsconfig.json

+6-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
11
{
22
"extends": "../../tsconfig.json",
3-
"include": ["src/**/*.ts", "../../node_modules/"]
3+
"include": ["src/**/*.ts"],
4+
"exclude": ["../../node_modules"],
5+
"compilerOptions": {
6+
"rootDir": "src",
7+
"outDir": "dist"
8+
},
49
}

tsconfig.json

-6
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,6 @@
33
"node_modules",
44
"dist"
55
],
6-
"include": [
7-
"./packages/*/src",
8-
"./packages/*/src/**/*"
9-
],
106
"compilerOptions": {
117
"target": "ES2015",
128
"module": "esnext",
@@ -17,8 +13,6 @@
1713
"esnext",
1814
"es2015"
1915
],
20-
"rootDir": ".",
21-
"outDir": "dist",
2216
"allowJs": true,
2317
"allowSyntheticDefaultImports": true,
2418
"skipLibCheck": true,

0 commit comments

Comments
 (0)