Skip to content
#

modules

Here are 883 public repositories matching this topic...

martingronlund
martingronlund commented Oct 1, 2019
const customizer = console.log // returns undefined => merging is handled by `mergeAllWith`

// good
mergeAll([{ a: 1 }, { b: 2 }]) // { a: 1, b: 2 }
mergeAllWith(customizer, [{ a: 1 }, { b: 2 }]) // { a: 1, b: 2 }
// A-OK; customizer logs the following:
// undefined 2 "b" Object { a: 1, b: 2 } Object { b: 2 } undefined

// bad
mergeAll({}, { a: 1 }, { b: 2 }) // { a: 1, b: 2 }; OU
kevincox
kevincox commented Feb 19, 2020

#4001 🐛 bug report

Applying @parcel/transformer-raw to a file causes it to be renamed as if it was an asset rather than an entry.

🎛 Configuration (.babelrc, package.json, cli command)

// .parcelrc
{
	"extends": ["@parcel/config-default"],
	"transforms": {
		"*.json": ["@parcel/transformer-raw"],
	}
}
// entry.json
{}
$ parcel build entry.json
icleolion
icleolion commented Jan 16, 2020

parseISO v2 documentation currently states

The previous parse implementation was renamed to parseISO.

parse v2 documentation currently states

Old parse was renamed to toDate. Now parse is a new function which parses a string using a provided format.

I think considering the sentence is to divert people who have previously been using v1 parse to the correct v2 equivalent, it only

blaasvaer
blaasvaer commented Mar 1, 2020

Hi, I've been trying to figure out from the docs (and google) to implement externalization of modules in Browserify with no luck. I've implemented transform-runtime plugins, and used .external(filename) in Gulp and tried to use require() in another module ... but I general cannot figure out from the docs what part or parts I'm missing in making this work.

Could someone please, add a brief secti

pnpm
boenrobot
boenrobot commented Jan 6, 2020

I have a project that is in a monorepo and uses yarn right now.

I'm considering migrating to pnpm for the monorepo, as well as all other projects I contribute to, as I have a small SSD as local storage (and with Windows...). However, it would be ideal if there was compatibility between yarn's workspaces and pnpm, so that we don't have to jump "all in" to it.

To this end, yarn allows packages

🌿 基于springboot的快速学习示例,整合自己遇到的开源框架,如:rabbitmq(延迟队列)、Kafka、jpa、redies、oauth2、swagger、jsp、docker、spring-batch、异常处理、日志输出、多模块开发、多环境打包、缓存cache、爬虫、jwt、dubbo和Async等等📌

  • Updated Feb 19, 2020
  • Java
Lusito
Lusito commented Feb 21, 2020

The npm pages all say something like "Unable to find a readme for redux-dynamic-modules@5.2.0", which looks a bit concerning when browsing potential packages:
https://www.npmjs.com/package/redux-dynamic-modules

I think there should at least be a minimal readme per package included, which gives a short overview and points to the github page and/or homepage for more details.

I really think th

thepudds
thepudds commented May 30, 2019

In the README, maybe very briefly explain how to use a fork you created in GitHub, how to push a change back to that fork on GitHub, and then mention you can use that to open a PR on the original project?

For example, if you fork rsc.io/quote in the GitHub web interface to github.com/thepudds/quote, then use gohack + git to use that fork:

cd $(mktemp -d)                         # cr

这是我准备写的第一本书,其实早些时候已经打算开始写书了,只是苦于没有写书经验,无从下手。写书不同于博客,写书需要将知识,经验等系统化地讲述出来,而我现在恰巧缺乏这种表现能力。因此我决定在这里将项目中零散的东西记录下来,然后后期润色一下,写成一本书。

  • Updated Mar 8, 2020
  • Roff

Improve this page

Add a description, image, and links to the modules topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the modules topic, visit your repo's landing page and select "manage topics."

Learn more

You can’t perform that action at this time.