caterpillar-examples
Advanced tools
Comparing version 3.0.1 to 3.1.0-next.1590033611.ad11dfbbad88c895100cdacce65753311d87d77e
# History | ||
## v3.1.0 2020 May 21 | ||
- Updated dependencies, [base files](https://github.com/bevry/base), and [editions](https://editions.bevry.me) using [boundation](https://github.com/bevry/boundation) | ||
## v3.0.1 2020 May 9 | ||
@@ -4,0 +8,0 @@ |
{ | ||
"title": "Caterpillar Examples", | ||
"name": "caterpillar-examples", | ||
"version": "3.0.1", | ||
"version": "3.1.0-next.1590033611.ad11dfbbad88c895100cdacce65753311d87d77e", | ||
"description": "Examples of different ways [Caterpillar](http://github.com/bevry/caterpillar) can be used.", | ||
@@ -111,3 +111,3 @@ "homepage": "https://github.com/bevry/caterpillar-examples", | ||
"bin": "bin.js", | ||
"types": "source/index.ts", | ||
"types": "./compiled-types/", | ||
"type": "module", | ||
@@ -118,23 +118,23 @@ "main": "edition-esnext/index.js", | ||
"dependencies": { | ||
"caterpillar": "^5.1.2", | ||
"caterpillar-browser": "^6.0.0", | ||
"caterpillar-filter": "^6.0.0", | ||
"caterpillar-human": "^6.0.0" | ||
"caterpillar": "^5.3.0", | ||
"caterpillar-browser": "^6.3.0", | ||
"caterpillar-filter": "^6.2.0", | ||
"caterpillar-human": "^6.2.0" | ||
}, | ||
"devDependencies": { | ||
"@bevry/update-contributors": "^1.1.0", | ||
"@typescript-eslint/eslint-plugin": "^2.31.0", | ||
"@typescript-eslint/parser": "^2.31.0", | ||
"assert-helpers": "^6.2.0", | ||
"@bevry/update-contributors": "^1.6.0", | ||
"@typescript-eslint/eslint-plugin": "^2.34.0", | ||
"@typescript-eslint/parser": "^2.34.0", | ||
"assert-helpers": "^6.5.0", | ||
"eslint": "^7.0.0", | ||
"eslint-config-bevry": "^3.4.0", | ||
"eslint-config-bevry": "^3.5.0", | ||
"eslint-config-prettier": "^6.11.0", | ||
"eslint-plugin-prettier": "^3.1.3", | ||
"kava": "^4.4.0", | ||
"kava": "^5.1.0", | ||
"prettier": "^2.0.5", | ||
"projectz": "^2.0.0", | ||
"projectz": "^2.2.0", | ||
"surge": "^0.21.3", | ||
"typedoc": "^0.17.6", | ||
"typescript": "^3.8.3", | ||
"valid-directory": "^1.6.0", | ||
"typedoc": "^0.17.7", | ||
"typescript": "^3.9.3", | ||
"valid-directory": "^2.0.0", | ||
"valid-module": "^1.0.0" | ||
@@ -144,11 +144,12 @@ }, | ||
"our:clean": "rm -Rf ./docs ./edition* ./es2015 ./es5 ./out ./.next", | ||
"our:compile": "npm run our:compile:edition-browsers && npm run our:compile:edition-esnext", | ||
"our:compile:edition-browsers": "tsc --module ESNext --target ES2019 --outDir ./edition-browsers --project tsconfig.json && test -d edition-browsers/source && ( mv edition-browsers/source edition-temp && rm -Rf edition-browsers && mv edition-temp edition-browsers ) || true", | ||
"our:compile:edition-esnext": "tsc --module ESNext --target ESNext --outDir ./edition-esnext --project tsconfig.json && test -d edition-esnext/source && ( mv edition-esnext/source edition-temp && rm -Rf edition-esnext && mv edition-temp edition-esnext ) || true", | ||
"our:compile": "npm run our:compile:edition-browsers && npm run our:compile:edition-esnext && npm run our:compile:types", | ||
"our:compile:edition-browsers": "tsc --module ESNext --target ES2019 --outDir ./edition-browsers --project tsconfig.json && ( test ! -d edition-browsers/source || ( mv edition-browsers/source edition-temp && rm -Rf edition-browsers && mv edition-temp edition-browsers ) )", | ||
"our:compile:edition-esnext": "tsc --module ESNext --target ESNext --outDir ./edition-esnext --project tsconfig.json && ( test ! -d edition-esnext/source || ( mv edition-esnext/source edition-temp && rm -Rf edition-esnext && mv edition-temp edition-esnext ) )", | ||
"our:compile:types": "tsc --project tsconfig.json --emitDeclarationOnly --declaration --declarationMap --declarationDir ./compiled-types && ( test ! -d compiled-types/source || ( mv compiled-types/source edition-temp && rm -Rf compiled-types && mv edition-temp compiled-types ) )", | ||
"our:deploy": "echo no need for this project", | ||
"our:meta": "npm run our:meta:contributors && npm run our:meta:docs && npm run our:meta:projectz", | ||
"our:meta:contributors": "npx @bevry/update-contributors", | ||
"our:meta:contributors": "update-contributors", | ||
"our:meta:docs": "npm run our:meta:docs:typedoc", | ||
"our:meta:docs:typedoc": "rm -Rf ./docs && npx typedoc --mode file --exclude '**/+(*test*|node_modules)' --excludeExternals --name \"$npm_package_name\" --readme ./README.md --out ./docs ./source", | ||
"our:meta:projectz": "npx projectz compile", | ||
"our:meta:docs:typedoc": "rm -Rf ./docs && typedoc --mode file --exclude '**/+(*test*|node_modules)' --excludeExternals --name \"$npm_package_name\" --readme ./README.md --out ./docs ./source", | ||
"our:meta:projectz": "projectz compile", | ||
"our:release": "npm run our:release:prepare && npm run our:release:check-changelog && npm run our:release:check-dirty && npm run our:release:tag && npm run our:release:push", | ||
@@ -163,8 +164,7 @@ "our:release:check-changelog": "cat ./HISTORY.md | grep v$npm_package_version || (echo add a changelog entry for v$npm_package_version && exit -1)", | ||
"our:test": "npm run our:verify && npm test", | ||
"our:verify": "npm run our:verify:directory && npm run our:verify:eslint && npm run our:verify:module && npm run our:verify:prettier && npm run our:verify:typescript", | ||
"our:verify:directory": "npx valid-directory", | ||
"our:verify:eslint": "npx eslint --fix --ignore-pattern '**/*.d.ts' --ignore-pattern '**/vendor/' --ignore-pattern '**/node_modules/' --ext .mjs,.js,.jsx,.ts,.tsx ./source", | ||
"our:verify:module": "npx valid-module", | ||
"our:verify": "npm run our:verify:directory && npm run our:verify:eslint && npm run our:verify:module && npm run our:verify:prettier", | ||
"our:verify:directory": "valid-directory", | ||
"our:verify:eslint": "eslint --fix --ignore-pattern '**/*.d.ts' --ignore-pattern '**/vendor/' --ignore-pattern '**/node_modules/' --ext .mjs,.js,.jsx,.ts,.tsx ./source", | ||
"our:verify:module": "valid-module", | ||
"our:verify:prettier": "prettier --write .", | ||
"our:verify:typescript": "tsc --noEmit --project tsconfig.json", | ||
"test": "node ./edition-esnext/test.js" | ||
@@ -181,3 +181,7 @@ }, | ||
}, | ||
"perferGlobal": true | ||
"perferGlobal": true, | ||
"boundation": { | ||
"ltsNodeOnly": true, | ||
"desiredNodeOnly": true | ||
} | ||
} |
@@ -42,2 +42,4 @@ <!-- TITLE/ --> | ||
[Try it in the Web Browser](http://master.caterpillar-examples.bevry.surge.sh/index.html) | ||
![Running with No Flags](http://rawgit.com/bevry/caterpillar-examples/master/screenshots/no-flags.png) | ||
@@ -49,4 +51,2 @@ | ||
[Try it in the Web Browser](http://rawgit.com/bevry/caterpillar-examples/master/index.html) | ||
### Try it using the npm package | ||
@@ -53,0 +53,0 @@ |
@@ -10,3 +10,2 @@ { | ||
"target": "ESNext", | ||
"lib": [], | ||
"module": "ESNext" | ||
@@ -13,0 +12,0 @@ }, |
Sorry, the diff of this file is not supported yet
No v1
QualityPackage is not semver >=1. This means it is not stable and does not support ^ ranges.
Found 1 instance in 1 package
Deprecated
MaintenanceThe maintainer of the package marked it as deprecated. This could indicate that a single version should not be used, or that the package is no longer maintained and any new vulnerabilities will not be fixed.
Found 1 instance in 1 package
437717
36
399
0
1
Updatedcaterpillar@^5.3.0
Updatedcaterpillar-browser@^6.3.0
Updatedcaterpillar-filter@^6.2.0
Updatedcaterpillar-human@^6.2.0