@objectql/create 1.0.1 → 3.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@objectql/create",
3
- "version": "1.0.1",
3
+ "version": "3.0.0",
4
4
  "description": "Create ObjectQL apps with one command",
5
5
  "bin": {
6
6
  "create-objectql": "./dist/bin.js"
@@ -1,5 +1,25 @@
1
1
  # @objectql/starter-enterprise
2
2
 
3
+ ## 3.0.0
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [38b01f4]
8
+ - @objectql/core@3.0.0
9
+ - @objectql/driver-sql@3.0.0
10
+ - @objectql/platform-node@3.0.0
11
+ - @objectql/types@3.0.0
12
+
13
+ ## 2.0.1
14
+
15
+ ### Patch Changes
16
+
17
+ - Updated dependencies
18
+ - @objectql/types@1.9.1
19
+ - @objectql/core@1.9.1
20
+ - @objectql/platform-node@1.9.1
21
+ - @objectql/driver-sql@1.9.1
22
+
3
23
  ## 2.0.0
4
24
 
5
25
  ### Patch Changes
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@objectql/example-enterprise-erp",
3
- "version": "2.0.0",
3
+ "version": "3.0.0",
4
4
  "description": "ObjectQL Enterprise Example - CRM & HR Demo",
5
5
  "private": true,
6
6
  "keywords": [
@@ -1,5 +1,21 @@
1
1
  # @example/hello-world
2
2
 
3
+ ## 1.0.7
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [38b01f4]
8
+ - @objectql/core@3.0.0
9
+ - @objectql/driver-sql@3.0.0
10
+
11
+ ## 1.0.6
12
+
13
+ ### Patch Changes
14
+
15
+ - Updated dependencies
16
+ - @objectql/core@1.9.1
17
+ - @objectql/driver-sql@1.9.1
18
+
3
19
  ## 1.0.5
4
20
 
5
21
  ### Patch Changes
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@objectql/example-hello-world",
3
- "version": "1.0.5",
3
+ "version": "1.0.7",
4
4
  "private": true,
5
5
  "repository": {
6
6
  "type": "git",
@@ -1,5 +1,25 @@
1
1
  # @objectql/starter-basic
2
2
 
3
+ ## 3.0.0
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [38b01f4]
8
+ - @objectql/core@3.0.0
9
+ - @objectql/driver-sql@3.0.0
10
+ - @objectql/platform-node@3.0.0
11
+ - @objectql/types@3.0.0
12
+
13
+ ## 2.0.1
14
+
15
+ ### Patch Changes
16
+
17
+ - Updated dependencies
18
+ - @objectql/types@1.9.1
19
+ - @objectql/core@1.9.1
20
+ - @objectql/platform-node@1.9.1
21
+ - @objectql/driver-sql@1.9.1
22
+
3
23
  ## 2.0.0
4
24
 
5
25
  ### Patch Changes
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@objectql/example-project-tracker",
3
- "version": "2.0.0",
3
+ "version": "3.0.0",
4
4
  "description": "ObjectQL Basic Example Project",
5
5
  "private": true,
6
6
  "keywords": [
@@ -24,7 +24,8 @@
24
24
  "dist"
25
25
  ],
26
26
  "scripts": {
27
- "start": "objectql serve --dir src",
27
+ "dev": "objectql dev --dir src",
28
+ "start": "objectql start --dir src",
28
29
  "seed": "ts-node src/seed.ts",
29
30
  "codegen": "objectql types -s src -o src/types",
30
31
  "build": "npm run codegen && tsc && rsync -a --include '*/' --include '*.yml' --exclude '*' src/ dist/",