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

Commit

Permalink
v2.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
zarathustra323 committed Jan 28, 2021
1 parent dfbf8a0 commit a3c7a09
Show file tree
Hide file tree
Showing 34 changed files with 107 additions and 107 deletions.
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "2.2.2",
"version": "2.3.0",
"npmClient": "yarn",
"useWorkspaces": true,
"command": {
Expand Down
6 changes: 3 additions & 3 deletions packages/base4-rest-api/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@parameter1/base-cms-base4-rest-api",
"version": "2.0.0",
"version": "2.3.0",
"description": "A Base4 REST API client.",
"main": "src/index.js",
"author": "Jacob Bare <[email protected]>",
Expand All @@ -12,8 +12,8 @@
},
"dependencies": {
"@parameter1/base-cms-inflector": "^2.0.0",
"@parameter1/base-cms-object-path": "^2.0.0",
"@parameter1/base-cms-utils": "^2.0.0",
"@parameter1/base-cms-object-path": "^2.3.0",
"@parameter1/base-cms-utils": "^2.3.0",
"http-errors": "^1.8.0",
"node-fetch": "^2.6.1"
},
Expand Down
8 changes: 4 additions & 4 deletions packages/canonical-path/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@parameter1/base-cms-canonical-path",
"version": "2.1.0",
"version": "2.3.0",
"description": "Canonical path library for BaseCMS projects.",
"main": "src/index.js",
"author": "Josh Worden <[email protected]>",
Expand All @@ -11,10 +11,10 @@
"test": "yarn run lint && ../../node_modules/.bin/mocha --reporter spec"
},
"dependencies": {
"@parameter1/base-cms-db": "^2.1.0",
"@parameter1/base-cms-db": "^2.3.0",
"@parameter1/base-cms-inflector": "^2.0.0",
"@parameter1/base-cms-object-path": "^2.0.0",
"@parameter1/base-cms-utils": "^2.0.0"
"@parameter1/base-cms-object-path": "^2.3.0",
"@parameter1/base-cms-utils": "^2.3.0"
},
"devDependencies": {
"chai": "^4.2.0",
Expand Down
6 changes: 3 additions & 3 deletions packages/db/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@parameter1/base-cms-db",
"version": "2.1.0",
"version": "2.3.0",
"description": "The BaseCMS database driver. Requires direct MongoDB access.",
"main": "src/index.js",
"author": "Jacob Bare <[email protected]>",
Expand All @@ -12,8 +12,8 @@
},
"dependencies": {
"@parameter1/base-cms-async": "^2.0.0",
"@parameter1/base-cms-object-path": "^2.0.0",
"@parameter1/base-cms-utils": "^2.0.0",
"@parameter1/base-cms-object-path": "^2.3.0",
"@parameter1/base-cms-utils": "^2.3.0",
"base64-url": "^2.3.3",
"deepmerge": "^3.3.0",
"mongodb": "^3.6.3",
Expand Down
4 changes: 2 additions & 2 deletions packages/dependency-tool/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@parameter1/base-cms-dependency-tool",
"version": "2.0.0",
"version": "2.3.0",
"description": "Command line tool for managing BaseCMS project dependencies.",
"author": "Jacob Bare <[email protected]>",
"main": "src/index.js",
Expand All @@ -15,7 +15,7 @@
},
"dependencies": {
"@parameter1/base-cms-cli-utils": "^2.0.0",
"@parameter1/base-cms-object-path": "^2.0.0",
"@parameter1/base-cms-object-path": "^2.3.0",
"chalk": "^2.4.2",
"fancy-log": "^1.3.3",
"yargs": "^14.2.3"
Expand Down
10 changes: 5 additions & 5 deletions packages/export-framework/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@parameter1/base-cms-export-framework",
"version": "2.2.0",
"version": "2.3.0",
"description": "Core framework for BaseCMS Exports.",
"author": "Josh Worden <[email protected]>",
"main": "src/index.js",
Expand All @@ -12,12 +12,12 @@
},
"dependencies": {
"@godaddy/terminus": "^4.5.0",
"@parameter1/base-cms-express-apollo": "^2.0.0",
"@parameter1/base-cms-express-apollo": "^2.3.0",
"@parameter1/base-cms-image": "^2.0.0",
"@parameter1/base-cms-object-path": "^2.0.0",
"@parameter1/base-cms-object-path": "^2.3.0",
"@parameter1/base-cms-tenant-context": "^2.0.0",
"@parameter1/base-cms-utils": "^2.0.0",
"@parameter1/base-cms-web-common": "^2.2.0",
"@parameter1/base-cms-utils": "^2.3.0",
"@parameter1/base-cms-web-common": "^2.3.0",
"express": "^4.17.1",
"graphql": "^14.7.0",
"graphql-tag": "^2.11.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/express-apollo/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@parameter1/base-cms-express-apollo",
"version": "2.0.0",
"version": "2.3.0",
"description": "Apollo GraphQL SSR Client for BaseCMS+Express apps",
"main": "src/index.js",
"repository": "https://github.com/parameter1/base-cms/tree/master/packages/express-apollo",
Expand Down
8 changes: 4 additions & 4 deletions packages/marko-core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@parameter1/base-cms-marko-core",
"version": "2.2.0",
"version": "2.3.0",
"description": "Core BaseCMS Marko components.",
"author": "Jacob Bare <[email protected]>",
"main": "index.js",
Expand All @@ -12,9 +12,9 @@
"test": "yarn compile && yarn lint"
},
"dependencies": {
"@parameter1/base-cms-object-path": "^2.0.0",
"@parameter1/base-cms-utils": "^2.0.0",
"@parameter1/base-cms-web-common": "^2.2.0",
"@parameter1/base-cms-object-path": "^2.3.0",
"@parameter1/base-cms-utils": "^2.3.0",
"@parameter1/base-cms-web-common": "^2.3.0",
"marko": "~4.20.0",
"moment": "^2.29.1",
"moment-timezone": "^0.5.32"
Expand Down
6 changes: 3 additions & 3 deletions packages/marko-newsletters-email-x/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@parameter1/base-cms-marko-newsletters-email-x",
"version": "2.0.0",
"version": "2.3.0",
"description": "EmailX Marko components for BaseCMS newsletters.",
"author": "Jacob Bare <[email protected]>",
"license": "MIT",
Expand All @@ -11,8 +11,8 @@
"test": "yarn compile && yarn lint"
},
"dependencies": {
"@parameter1/base-cms-object-path": "^2.0.0",
"@parameter1/base-cms-utils": "^2.0.0",
"@parameter1/base-cms-object-path": "^2.3.0",
"@parameter1/base-cms-utils": "^2.3.0",
"moment": "^2.29.1",
"node-fetch": "^2.6.1"
},
Expand Down
6 changes: 3 additions & 3 deletions packages/marko-newsletters-gam/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@parameter1/base-cms-marko-newsletters-gam",
"version": "2.0.0",
"version": "2.3.0",
"description": "GAM/DFP Marko components for BaseCMS newsletters.",
"author": "Jacob Bare <[email protected]>",
"license": "MIT",
Expand All @@ -11,8 +11,8 @@
"test": "yarn compile && yarn lint"
},
"dependencies": {
"@parameter1/base-cms-object-path": "^2.0.0",
"@parameter1/base-cms-utils": "^2.0.0",
"@parameter1/base-cms-object-path": "^2.3.0",
"@parameter1/base-cms-utils": "^2.3.0",
"moment": "^2.29.1"
},
"peerDependencies": {
Expand Down
10 changes: 5 additions & 5 deletions packages/marko-newsletters/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@parameter1/base-cms-marko-newsletters",
"version": "2.2.0",
"version": "2.3.0",
"description": "Core Marko+Express components for BaseCMS newsletter templates",
"author": "Jacob Bare <[email protected]>",
"main": "index.js",
Expand All @@ -13,12 +13,12 @@
},
"dependencies": {
"@godaddy/terminus": "^4.5.0",
"@parameter1/base-cms-express-apollo": "^2.0.0",
"@parameter1/base-cms-express-apollo": "^2.3.0",
"@parameter1/base-cms-image": "^2.0.0",
"@parameter1/base-cms-object-path": "^2.0.0",
"@parameter1/base-cms-object-path": "^2.3.0",
"@parameter1/base-cms-tenant-context": "^2.0.0",
"@parameter1/base-cms-utils": "^2.0.0",
"@parameter1/base-cms-web-common": "^2.2.0",
"@parameter1/base-cms-utils": "^2.3.0",
"@parameter1/base-cms-web-common": "^2.3.0",
"express": "^4.17.1",
"graphql": "^14.7.0",
"graphql-tag": "^2.11.0",
Expand Down
6 changes: 3 additions & 3 deletions packages/marko-web-gam/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@parameter1/base-cms-marko-web-gam",
"version": "2.0.0",
"version": "2.3.0",
"description": "Google Ad Manager (GAM) Marko components for BaseCMS websites",
"author": "Jacob Bare <[email protected]>",
"license": "MIT",
Expand All @@ -13,8 +13,8 @@
"test": "yarn compile && yarn lint && mocha --reporter spec"
},
"dependencies": {
"@parameter1/base-cms-object-path": "^2.0.0",
"@parameter1/base-cms-utils": "^2.0.0",
"@parameter1/base-cms-object-path": "^2.3.0",
"@parameter1/base-cms-utils": "^2.3.0",
"scrollmagic": "^2.0.8"
},
"peerDependencies": {
Expand Down
6 changes: 3 additions & 3 deletions packages/marko-web-gcse/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@parameter1/base-cms-marko-web-gcse",
"version": "2.0.0",
"version": "2.3.0",
"description": "Google Custom Search (GCSE) Marko/Vue components for BaseCMS websites",
"author": "Jacob Bare <[email protected]>",
"license": "MIT",
Expand All @@ -11,8 +11,8 @@
"test": "yarn compile && yarn lint"
},
"dependencies": {
"@parameter1/base-cms-object-path": "^2.0.0",
"@parameter1/base-cms-utils": "^2.0.0"
"@parameter1/base-cms-object-path": "^2.3.0",
"@parameter1/base-cms-utils": "^2.3.0"
},
"peerDependencies": {
"@parameter1/base-cms-marko-web": "^2.0.0"
Expand Down
6 changes: 3 additions & 3 deletions packages/marko-web-gtm/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@parameter1/base-cms-marko-web-gtm",
"version": "2.0.0",
"version": "2.3.0",
"description": "Google Tag Manager (GAM) Marko components for BaseCMS websites",
"author": "Jacob Bare <[email protected]>",
"license": "MIT",
Expand All @@ -12,8 +12,8 @@
},
"dependencies": {
"@parameter1/base-cms-inflector": "^2.0.0",
"@parameter1/base-cms-object-path": "^2.0.0",
"@parameter1/base-cms-utils": "^2.0.0",
"@parameter1/base-cms-object-path": "^2.3.0",
"@parameter1/base-cms-utils": "^2.3.0",
"graphql": "^14.7.0",
"graphql-tag": "^2.11.0"
},
Expand Down
6 changes: 3 additions & 3 deletions packages/marko-web-identity-x/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@parameter1/base-cms-marko-web-identity-x",
"version": "2.0.0",
"version": "2.3.0",
"description": "Marko Wrapper for IdentityX",
"repository": "https://github.com/parameter1/base-cms/tree/master/packages/marko-web-identity-x",
"author": "Josh Worden <[email protected]>",
Expand All @@ -11,8 +11,8 @@
"test": "yarn compile && yarn lint"
},
"dependencies": {
"@parameter1/base-cms-object-path": "^2.0.0",
"@parameter1/base-cms-utils": "^2.0.0",
"@parameter1/base-cms-object-path": "^2.3.0",
"@parameter1/base-cms-utils": "^2.3.0",
"apollo-cache-inmemory": "^1.6.6",
"apollo-client": "^2.6.10",
"apollo-link-http": "^1.5.17",
Expand Down
6 changes: 3 additions & 3 deletions packages/marko-web-inquiry/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@parameter1/base-cms-marko-web-inquiry",
"version": "2.0.0",
"version": "2.3.0",
"author": "Jacob Bare <[email protected]>",
"repository": "https://github.com/parameter1/base-cms/tree/master/packages/inquiry",
"license": "MIT",
Expand All @@ -10,8 +10,8 @@
},
"dependencies": {
"@parameter1/base-cms-env": "^2.0.0",
"@parameter1/base-cms-object-path": "^2.0.0",
"@parameter1/base-cms-utils": "^2.0.0",
"@parameter1/base-cms-object-path": "^2.3.0",
"@parameter1/base-cms-utils": "^2.3.0",
"@sendgrid/mail": "^6.4.0",
"body-parser": "^1.19.0",
"express": "^4.17.1",
Expand Down
6 changes: 3 additions & 3 deletions packages/marko-web-native-x/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@parameter1/base-cms-marko-web-native-x",
"version": "2.0.3",
"version": "2.3.0",
"description": "NativeX Marko components for BaseCMS websites",
"author": "Jacob Bare <[email protected]>",
"license": "MIT",
Expand All @@ -11,8 +11,8 @@
"test": "yarn compile && yarn lint"
},
"dependencies": {
"@parameter1/base-cms-object-path": "^2.0.0",
"@parameter1/base-cms-utils": "^2.0.0",
"@parameter1/base-cms-object-path": "^2.3.0",
"@parameter1/base-cms-utils": "^2.3.0",
"node-fetch": "^2.6.1"
},
"peerDependencies": {
Expand Down
4 changes: 2 additions & 2 deletions packages/marko-web-photoswipe/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@parameter1/base-cms-marko-web-photoswipe",
"version": "2.0.0",
"version": "2.3.0",
"author": "Jacob Bare <[email protected]>",
"repository": "https://github.com/parameter1/base-cms/tree/master/packages/marko-web-photoswipe",
"license": "MIT",
Expand All @@ -13,7 +13,7 @@
},
"dependencies": {
"@parameter1/base-cms-image": "^2.0.0",
"@parameter1/base-cms-object-path": "^2.0.0",
"@parameter1/base-cms-object-path": "^2.3.0",
"photoswipe": "^4.1.3"
},
"peerDependencies": {
Expand Down
6 changes: 3 additions & 3 deletions packages/marko-web-reveal-ad/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@parameter1/base-cms-marko-web-reveal-ad",
"version": "2.0.0",
"version": "2.3.0",
"description": "Custom Reveal Ad Marko/Vue components for BaseCMS websites",
"author": "Jacob Bare <[email protected]>",
"license": "MIT",
Expand All @@ -13,8 +13,8 @@
"test": "yarn compile && yarn lint"
},
"dependencies": {
"@parameter1/base-cms-object-path": "^2.0.0",
"@parameter1/base-cms-utils": "^2.0.0"
"@parameter1/base-cms-object-path": "^2.3.0",
"@parameter1/base-cms-utils": "^2.3.0"
},
"peerDependencies": {
"@parameter1/base-cms-marko-web": "^2.0.0"
Expand Down
4 changes: 2 additions & 2 deletions packages/marko-web-social-sharing/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@parameter1/base-cms-marko-web-social-sharing",
"version": "2.0.0",
"version": "2.3.0",
"description": "Social Sharing Marko/Vue components for BaseCMS websites",
"author": "Jacob Bare <[email protected]>",
"license": "MIT",
Expand All @@ -13,7 +13,7 @@
"test": "yarn compile && yarn lint"
},
"dependencies": {
"@parameter1/base-cms-utils": "^2.0.0"
"@parameter1/base-cms-utils": "^2.3.0"
},
"peerDependencies": {
"@parameter1/base-cms-marko-core": "^2.0.0",
Expand Down
6 changes: 3 additions & 3 deletions packages/marko-web-theme-default/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@parameter1/base-cms-marko-web-theme-default",
"version": "2.2.2",
"version": "2.3.0",
"description": "Default theme for Marko BaseCMS websites",
"author": "Jacob Bare <[email protected]>",
"main": "index.js",
Expand All @@ -15,8 +15,8 @@
},
"dependencies": {
"@parameter1/base-cms-marko-web-icons": "^2.0.0",
"@parameter1/base-cms-object-path": "^2.0.0",
"@parameter1/base-cms-utils": "^2.0.0",
"@parameter1/base-cms-object-path": "^2.3.0",
"@parameter1/base-cms-utils": "^2.3.0",
"bootstrap": "4.3.1",
"graphql": "^14.7.0",
"graphql-tag": "^2.11.0"
Expand Down
Loading

0 comments on commit a3c7a09

Please sign in to comment.