Skip to content

Commit f113d8e

Browse files
committed
Refactoring: moved caddy packages to juicy/juicy, flat packages
1 parent fcf478d commit f113d8e

35 files changed

+1076
-7352
lines changed

.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,8 @@
22
/node_modules
33
/packages/**/package-lock.json
44

5+
# App
6+
/dist
7+
58
# Vercel
69
.vercel

Makefile

+19-5
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,24 @@
1-
.PHONY: install build test-unit
1+
.PHONY: install build test publish canary
22

33
install:
4-
npx lerna exec npm install
4+
npm install
55

66
build:
7-
npx lerna exec npm run build
7+
npm run build
88

9-
test-unit:
10-
npm run test-unit
9+
build-watch:
10+
npm run watch
11+
12+
test:
13+
npm run test
14+
15+
test-watch:
16+
npm run test-watch
17+
18+
publish:
19+
rm -rf ./dist
20+
npm publish --access public --tag latest
21+
22+
canary:
23+
rm -rf ./dist
24+
npm publish --access public --tag canary

packages/php/README.md NPM.md

File renamed without changes.

unit.jest.config.js jest.config.js

+2-4
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,11 @@ module.exports = {
33
verbose: true,
44
testEnvironment: "node",
55
testMatch: [
6-
"**/packages/*/test/spec/**/*.js",
6+
"**/test/spec/**/*.js",
77
],
88
testPathIgnorePatterns: [
9-
"/build/",
10-
"/docs/",
119
"/errors/",
12-
"/examples/",
10+
"/dist/",
1311
"/node_modules/",
1412
]
1513
}

lerna.json

-8
This file was deleted.

0 commit comments

Comments
 (0)