create-sip 1.6.2 → 1.6.4

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.
@@ -23,7 +23,9 @@ async function up({context: QueryInterface}) {
23
23
  roleId: {
24
24
  type: DataTypes.INTEGER,
25
25
  defaultValue: 0
26
- }
26
+ },
27
+ createdAt: { type: DataTypes.DATE },
28
+ updatedAt: { type: DataTypes.DATE }
27
29
  });
28
30
  }
29
31
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-sip",
3
- "version": "1.6.2",
3
+ "version": "1.6.4",
4
4
  "main": "index.js",
5
5
  "bin": {
6
6
  "create-sip": "create-sip.js"
@@ -1 +1 @@
1
- # Sinto ESBuild client
1
+ # Sip ESBuild client
@@ -1,11 +1,14 @@
1
1
  {
2
- "name": "sinto-project",
2
+ "name": "sip-project",
3
3
  "version": "0.0.1",
4
- "description": "A project created by the Sinto command",
4
+ "description": "A project created by the create-sip",
5
5
  "scripts": {
6
6
  "test": "echo \"Error: no test specified\" && exit 1",
7
7
  "start": "browser-sync start --config bs-config.json",
8
- "dev": "npx esbuild src/app.js --outdir=public --bundle --watch",
8
+ "preview": "browser-sync start --server dist",
9
+ "dev:src": "npx esbuild src/app.js --outdir=public --bundle --watch",
10
+ "dev:bs": "browser-sync start --config bs-config.json",
11
+ "dev": "run-p dev:*",
9
12
  "build:src": "npx esbuild src/app.js --outdir=dist --bundle --minify",
10
13
  "build:htmlcss": "cpx public/**/*.{html,css,png} dist",
11
14
  "build:bscss": "cpx node_modules/bootstrap/dist/css/bootstrap.css dist",
@@ -1 +1 @@
1
- # Sinto ESBuild client
1
+ # Sip ESBuild client
@@ -1,12 +1,14 @@
1
1
  {
2
- "name": "sinto-project",
2
+ "name": "sip-project",
3
3
  "version": "0.0.1",
4
- "description": "A project created by the Sinto command",
4
+ "description": "A project created by the create-sip",
5
5
  "scripts": {
6
6
  "test": "echo \"Error: no test specified\" && exit 1",
7
7
  "start": "browser-sync start --config bs-config.json",
8
8
  "preview": "browser-sync start --server dist",
9
- "dev": "npx esbuild src/**/*.ts --outdir=public --bundle --watch",
9
+ "dev:src": "npx esbuild src/app.js --outdir=public --bundle --watch",
10
+ "dev:bs": "browser-sync start --config bs-config.json",
11
+ "dev": "run-p dev:*",
10
12
  "build:src": "npx esbuild src/app.ts --outdir=dist --bundle --minify",
11
13
  "build:htmlcss": "cpx public/**/*.{html,css,png} dist",
12
14
  "build:bscss": "cpx node_modules/bootstrap/dist/css/bootstrap.css dist",