Skip to content
Open
Show file tree
Hide file tree
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
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -25,3 +25,5 @@ yarn-debug.log*
yarn-error.log*
debug.log
tsconfig.tsbuildinfo

index.html
3 changes: 1 addition & 2 deletions lerna.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,5 @@
"packages/*"
],
"version": "1.0.3",
"npmClient": "yarn",
"useWorkspaces": true
"npmClient": "yarn"
}
27,444 changes: 21,580 additions & 5,864 deletions package-lock.json

Large diffs are not rendered by default.

6 changes: 5 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,10 @@
"packages/*"
],
"devDependencies": {
"lerna": "^3.22.1"
"lerna": "^8.0.2",
"rollup-plugin-ts": "^3.4.5"
},
"dependencies": {
"@wessberg/rollup-plugin-ts": "2.0.4"
}
}
4 changes: 4 additions & 0 deletions packages/core/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -108,3 +108,7 @@ OrbaOne is available over [unpkg](https://unpkg.com/) CDN
});
</script>
```

###### Local Development Testing ##########
Create an index.html file in the root directory of the application.
Embed the following script: <script src="packages/core/lib/index.js"></script> and then follow the instructions found in the Example section
2 changes: 1 addition & 1 deletion packages/core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
"@testing-library/dom": "^7.24.2",
"@types/jest": "^26.0.12",
"@typescript-eslint/parser": "^4.2.0",
"@wessberg/rollup-plugin-ts": "^1.3.4",
"@wessberg/rollup-plugin-ts": "^2.0.4",
"eslint": "^7.9.0",
"jest": "^26.4.2",
"jest-environment-jsdom-fourteen": "^1.0.1",
Expand Down
2 changes: 1 addition & 1 deletion packages/core/rollup.config.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import del from "rollup-plugin-delete";
import pkg from "./package.json";
import ts from "@wessberg/rollup-plugin-ts";
import ts from "rollup-plugin-ts";
import { terser } from "rollup-plugin-terser";

export default {
Expand Down
11,164 changes: 6,026 additions & 5,138 deletions yarn.lock

Large diffs are not rendered by default.