Skip to content
This repository has been archived by the owner on Nov 20, 2024. It is now read-only.

v4: feat/typescript #569

Merged
merged 29 commits into from
Apr 12, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
fe3385f
refactor: introduce typescript
ljosberinn Jan 22, 2022
7c8a012
wip: ts migration
ljosberinn Jan 24, 2022
5461c16
refactir
ljosberinn Jan 24, 2022
c5def02
refactor: port jest override
ljosberinn Jan 27, 2022
34f420a
feat: finish migration, add standalone generation
ljosberinn Feb 19, 2022
9aa576b
fix: stricter ts
ljosberinn Feb 19, 2022
d9499b0
chore: rule upgrades
ljosberinn Feb 19, 2022
c9f81d2
feat: merge standalone
ljosberinn Feb 20, 2022
b3caf3a
fix: monkey patch module.exports
ljosberinn Feb 20, 2022
c56d22e
chore: deps
ljosberinn Mar 13, 2022
6c3281a
feat: begin tests
ljosberinn Mar 13, 2022
5475b3e
feat: more tests
ljosberinn Mar 13, 2022
c712b93
feat: more tests
ljosberinn Mar 13, 2022
c1949a5
feat: add `blankSlate` flag
ljosberinn Mar 14, 2022
2a85087
feat: add plugin tests
ljosberinn Mar 14, 2022
13a576f
chore: deps
ljosberinn Mar 26, 2022
a4ef193
chore: more tests
ljosberinn Mar 26, 2022
92a0817
chore: forgotten changes
ljosberinn Mar 26, 2022
dc34a17
chore: deps
ljosberinn Mar 28, 2022
e4f6a46
chore: deps
ljosberinn Apr 2, 2022
13b2837
feat: more tests
ljosberinn Apr 2, 2022
6c2306e
fix: version & more tests
ljosberinn Apr 2, 2022
772042c
feat: remaining tests
ljosberinn Apr 3, 2022
3642dbe
fix: tests
ljosberinn Apr 4, 2022
70a5821
chore: debug test
ljosberinn Apr 4, 2022
bf9df4e
fix: test
ljosberinn Apr 4, 2022
7402109
chore: update readme
ljosberinn Apr 4, 2022
e44eb65
Merge branch 'master' into feat/typescript
ljosberinn Apr 4, 2022
9a2522a
chore: deps
ljosberinn Apr 12, 2022
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
3 changes: 2 additions & 1 deletion .eslintignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
coverage/
integration
integration
dist/
6 changes: 4 additions & 2 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
const { createConfig } = require('./src/createConfig');
const { createConfig } = require('./dist/createConfig');

module.exports = createConfig();
const config = createConfig();

module.exports = config;
2 changes: 2 additions & 0 deletions .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@ jobs:
cache-dependency-path: 'integration/**/yarn.lock'
- name: Install dependencies
run: yarn --frozen-lockfile && yarn install:integration
- name: Build
run: yarn build
- name: Lint
run: yarn lint
- name: Test
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@ jobs:
cache-dependency-path: 'integration/**/yarn.lock'
- name: Install dependencies
run: yarn --frozen-lockfile && yarn install:integration
- name: Build
run: yarn build
- name: Lint
run: yarn lint
- name: Test & Coverage Report
Expand Down
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
node_modules/
coverage/
coverage/
dist
3 changes: 2 additions & 1 deletion .prettierignore
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
coverage
coverage
dist
Loading