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

refactor(framework): add type module to package.json #6617

Merged
merged 48 commits into from
Mar 31, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
48 commits
Select commit Hold shift + click to select a range
883bb9b
refactor(framework): add type module to package.json
nnaydenow Mar 1, 2023
2d50fb8
chore: add fiori package
nnaydenow Mar 1, 2023
adede7b
chore: sidenavigation tests
nnaydenow Mar 1, 2023
a515588
chore: shellbar tests
nnaydenow Mar 2, 2023
b6f2524
chore: main tests
nnaydenow Mar 2, 2023
d9b8d68
chore: main tests
nnaydenow Mar 2, 2023
565d706
chore: add icons/localization/theming
nnaydenow Mar 2, 2023
39d0215
chore: vite to esm
nnaydenow Mar 2, 2023
4bdb8f3
chore: lint
nnaydenow Mar 2, 2023
01e59e0
chore: lint
nnaydenow Mar 2, 2023
78d79ef
chore: lint
nnaydenow Mar 2, 2023
d0c5b7e
chore: make all configs common js
nnaydenow Mar 7, 2023
4a6138b
Merge branch 'main' of https://github.com/SAP/ui5-webcomponents into …
nnaydenow Mar 7, 2023
213e6b2
chore: enable base test
nnaydenow Mar 7, 2023
87e4192
chore: vite to commonjs
nnaydenow Mar 7, 2023
5e8ba33
chore: tools to cjs
nnaydenow Mar 8, 2023
5429237
chore: cjs or js
nnaydenow Mar 10, 2023
476dc49
Merge branch 'main' of https://github.com/SAP/ui5-webcomponents into …
nnaydenow Mar 16, 2023
84e5f12
chore: fix build
nnaydenow Mar 16, 2023
8baa32d
chore: add eslintrc to main
Mar 17, 2023
b3aa129
Merge branch 'main' of https://github.com/SAP/ui5-webcomponents into …
Mar 17, 2023
3c7b0fb
Merge branch 'main' into type-module
Mar 22, 2023
6d1e602
chore: update eslint to cjs
Mar 22, 2023
089270e
chore: add tests for ssr
Mar 22, 2023
b2fbf1a
chore: add eslint ignore
Mar 23, 2023
a812584
refactor(framework): add type module to package.json
nnaydenow Mar 1, 2023
31702a8
chore: add fiori package
nnaydenow Mar 1, 2023
198730d
chore: sidenavigation tests
nnaydenow Mar 1, 2023
f9c785f
chore: shellbar tests
nnaydenow Mar 2, 2023
bb665f8
chore: main tests
nnaydenow Mar 2, 2023
8ff1416
chore: main tests
nnaydenow Mar 2, 2023
ee74bcd
chore: add icons/localization/theming
nnaydenow Mar 2, 2023
f01df60
chore: vite to esm
nnaydenow Mar 2, 2023
522ba73
chore: lint
nnaydenow Mar 2, 2023
39230ba
chore: lint
nnaydenow Mar 2, 2023
72543af
chore: make all configs common js
nnaydenow Mar 7, 2023
44468b6
chore: enable base test
nnaydenow Mar 7, 2023
599d3f3
chore: vite to commonjs
nnaydenow Mar 7, 2023
740b53a
chore: tools to cjs
nnaydenow Mar 8, 2023
cecf947
chore: cjs or js
nnaydenow Mar 10, 2023
1515d79
chore: fix build
nnaydenow Mar 16, 2023
a2e9cfa
chore: add eslintrc to main
Mar 17, 2023
eaae3e4
chore: update eslint to cjs
Mar 22, 2023
b58fb91
chore: add tests for ssr
Mar 22, 2023
6f230a6
chore: add eslint ignore
Mar 23, 2023
3b02b32
chore: rebase
Mar 24, 2023
80c3e24
Merge branch 'type-module' of https://github.com/SAP/ui5-webcomponent…
Mar 24, 2023
6a3b62c
Merge branch 'main' of https://github.com/SAP/ui5-webcomponents into …
Mar 24, 2023
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
8 changes: 4 additions & 4 deletions packages/base/.eslintignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ src/thirdparty
bundle.esm.js
bundle.es5.js
rollup.config*.js
wdio.conf.js
postcss.config.js
package-scripts.js
.eslintrc.js
wdio.conf.cjs
postcss.config.cjs
package-scripts.cjs
.eslintrc.cjs
src/renderer/directives/style-map.js
src/util/metaUrl.js
File renamed without changes.
3 changes: 3 additions & 0 deletions packages/base/.npsrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"config": "./package-scripts.cjs"
}
Loading