Evan Jacobs
061736aa6d
trim down on unnecessary dependencies
2021-09-21 12:20:26 -04:00
Evan Jacobs
c5cebe448a
update sandbox
2021-09-21 12:14:28 -04:00
Evan Jacobs
edcfb86ab3
update benchmark suite
2021-09-21 11:48:42 -04:00
Evan Jacobs
1fbc69a8df
few more minor updates
2021-09-21 11:39:29 -04:00
Evan Jacobs
e58fe042a9
minor dep updates
2021-09-21 11:34:16 -04:00
Evan Jacobs
2bd6ab0ffe
upgrade version of react being tested
2021-09-21 11:30:52 -04:00
Evan Jacobs
6aef1d3c80
move jest files to logical location, update react-native
2021-09-21 11:27:27 -04:00
Evan Jacobs
acced9c9d5
update ts deps
2021-09-21 11:00:48 -04:00
Evan Jacobs
e0cb7ad864
update babel dependencies
2021-09-21 10:51:16 -04:00
Evan Jacobs
50fbc0859d
fix missing eslint plugins
2021-07-01 14:55:14 -04:00
Evan Jacobs
97884fbd91
remove workspace dependencies
2021-07-01 14:39:37 -04:00
Evan Jacobs
dcb8d186ae
upgrade jest
2021-07-01 14:39:37 -04:00
Evan Jacobs
1e82eb0dfc
pull in minor dependency updates
2021-07-01 14:39:37 -04:00
Evan Jacobs
8165cbe994
drop react-is dependency
2021-05-11 07:54:40 -04:00
Evan Jacobs
128802d4b5
fix lockfile
2021-05-11 06:54:48 -04:00
Evan Jacobs
2fb08627ab
benchmarks
2021-05-05 19:51:05 -04:00
Evan Jacobs
68a44e3627
update babel-plugin-macros and adjust tests
2021-05-05 12:54:15 -04:00
Evan Jacobs
913672a3f2
get things building
2021-05-05 00:50:41 -04:00
Evan Jacobs
ecb1783070
use husky-v4 instead
2021-05-05 00:13:43 -04:00
Evan Jacobs
03278566ee
remove seemingly unneeded dependency
2021-05-05 00:10:39 -04:00
Evan Jacobs
3219647fd6
semver minor updates
2021-05-05 00:09:07 -04:00
Evan Jacobs
75f22a2bc6
update stylis
2021-05-04 22:40:30 -04:00
Evan Jacobs
6a502bfd89
update babel
2021-05-04 22:35:11 -04:00
Evan Jacobs
d8359ddbc4
add react native types
2021-05-04 22:30:08 -04:00
Evan Jacobs
23ec638a5e
Merge branch 'typescript'
2021-04-18 10:28:58 -04:00
dependabot[bot]
404190e260
Bump y18n from 3.2.1 to 3.2.2 ( #3445 )
...
Bumps [y18n](https://github.com/yargs/y18n ) from 3.2.1 to 3.2.2.
- [Release notes](https://github.com/yargs/y18n/releases )
- [Changelog](https://github.com/yargs/y18n/blob/master/CHANGELOG.md )
- [Commits](https://github.com/yargs/y18n/commits )
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2021-03-31 10:17:41 -04:00
Evan Jacobs
bf3d2cb4f6
fix eslint
2021-03-30 12:38:28 -04:00
Evan Jacobs
1d41a31f0f
Merge remote-tracking branch 'origin/master' into typescript
2021-03-30 11:57:40 -04:00
Evan Jacobs
83d406afeb
update stylis and shared prop validator
2021-03-30 11:52:34 -04:00
Evan Jacobs
d0209036ba
update yarn.lock
2021-03-30 11:46:47 -04:00
Evan Jacobs
2814774e5a
Merge pull request #3358 from styled-components/dependabot/npm_and_yarn/node-notifier-8.0.1
...
Bump node-notifier from 5.2.1 to 8.0.1
2021-03-30 11:37:40 -04:00
dependabot[bot]
ed26606558
Bump ini from 1.3.5 to 1.3.8
...
Bumps [ini](https://github.com/isaacs/ini ) from 1.3.5 to 1.3.8.
- [Release notes](https://github.com/isaacs/ini/releases )
- [Commits](https://github.com/isaacs/ini/compare/v1.3.5...v1.3.8 )
Signed-off-by: dependabot[bot] <support@github.com >
2021-03-10 18:37:41 +00:00
dependabot[bot]
f4b947373b
Bump node-notifier from 5.2.1 to 8.0.1
...
Bumps [node-notifier](https://github.com/mikaelbr/node-notifier ) from 5.2.1 to 8.0.1.
- [Release notes](https://github.com/mikaelbr/node-notifier/releases )
- [Changelog](https://github.com/mikaelbr/node-notifier/blob/v8.0.1/CHANGELOG.md )
- [Commits](https://github.com/mikaelbr/node-notifier/compare/v5.2.1...v8.0.1 )
Signed-off-by: dependabot[bot] <support@github.com >
2021-03-10 18:34:28 +00:00
Evan Jacobs
9bef00cb03
Merge pull request #3423 from styled-components/dependabot/npm_and_yarn/elliptic-6.5.4
...
Bump elliptic from 6.4.1 to 6.5.4
2021-03-10 13:33:41 -05:00
Aron Griffis
83c8b0ccd0
feat: macro can customize importModuleName
...
If `styled` should come from a wrapper instead of directly from
styled-components, this enables users of the macro to customize the
import by configuring in `packages.json`:
"babelMacros": {
"styledComponents": {
"importModuleName": "my-styled-components"
}
}
Previously similar functionality landed in
babel-plugin-styled-components so users of the plugin could use
a wrapper at that level, but it wasn't available to users of the macro.
This builds on that work by passing the customized module name through
to the plugin. Consequently we also update the dependency to ensure the
plugin supports `topLevelImportPaths`
See 325167bb57
Fixes https://github.com/gregberge/xstyled/issues/44
2021-03-10 12:06:04 -05:00
dependabot[bot]
92616a875c
Bump elliptic from 6.4.1 to 6.5.4
...
Bumps [elliptic](https://github.com/indutny/elliptic ) from 6.4.1 to 6.5.4.
- [Release notes](https://github.com/indutny/elliptic/releases )
- [Commits](https://github.com/indutny/elliptic/compare/v6.4.1...v6.5.4 )
Signed-off-by: dependabot[bot] <support@github.com >
2021-03-10 16:57:19 +00:00
Evan Jacobs
051aad0495
continuing along
2020-11-21 16:28:18 -05:00
Evan Jacobs
ff287e5f7d
iterating
2020-11-21 12:31:04 -05:00
Evan Jacobs
971b57d180
WIP finish moving over files
2020-10-25 22:54:50 -04:00
Evan Jacobs
b7c5983a4e
use mainline postcss, continue iterating on types
2020-10-16 01:48:16 -04:00
Evan Jacobs
a7870d4052
fixing types
2020-10-16 00:35:03 -04:00
Evan Jacobs
0ba58f6bb6
[WIP] flow->ts
2020-10-15 23:25:13 -04:00
Evan Jacobs
d883026025
remove flow
2020-10-15 23:11:51 -04:00
Evan Jacobs
28b4c28f1e
update random stuff
2020-10-15 23:05:38 -04:00
Evan Jacobs
c349dc6b66
update bundlewatch
2020-10-15 23:03:41 -04:00
Evan Jacobs
46034caa31
update babel plugin tester
2020-10-15 23:03:07 -04:00
Evan Jacobs
c16cea5e57
remove example code we haven't been maintaining
...
will replace it with something better later
2020-10-15 23:00:39 -04:00
Evan Jacobs
0874cb7eef
update lint-staged & husky
2020-10-15 22:52:19 -04:00
Evan Jacobs
aef18157f9
update supports-color
2020-10-15 22:49:28 -04:00
Evan Jacobs
ee17b4a3a6
update prettier
2020-10-15 22:49:13 -04:00