Skip to content

Commit

Permalink
version
Browse files Browse the repository at this point in the history
  • Loading branch information
talp-525 committed Apr 8, 2022
1 parent c58b4f0 commit 3480d86
Show file tree
Hide file tree
Showing 5 changed files with 54 additions and 2 deletions.
19 changes: 19 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,25 @@

## Changelog

### 1.0.5
* Fix Sidebars Actions
* Fix Users Update

### 1.0.4
* Add Nodes to Visual Codes:
- Document
- CRUD
- API
- Message
- Customizer
* Fix Bulk
* Fix Some Widgets Render

### 1.0.3
* Fix Page Roles
* Fix Dynamic Variables in SQL-Editor
* Fix Controller Generate Issues

### 1.0.2
* Fix Section Width

Expand Down
2 changes: 1 addition & 1 deletion altrpnjs/app/Models/User.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import {
hasOne,
HasOne,
computed,
afterCreate, beforeDelete
afterCreate, beforeDelete,
} from '@ioc:Adonis/Lucid/Orm'
import { v4 as uuid } from "uuid";

Expand Down
15 changes: 14 additions & 1 deletion webpack.admin.prod.js
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,15 @@ module.exports = {
"sass-loader"
]
},
{
test: /\.css$/i,
use: [
// Creates `style` nodes from JS strings
"style-loader",
// Translates CSS into CommonJS
"css-loader",
]
},
{
test: /\.svg$/,
exclude: /slick.svg$|spritesheet.svg$/,
Expand All @@ -63,7 +72,11 @@ module.exports = {
options: {
name: "[path][name].[ext]"
}
}
},
{
test: /(\.(woff|woff2|eot|ttf|otf)|slick.svg)$/,
use: ["file-loader"]
},
]
},
resolve: {
Expand Down
10 changes: 10 additions & 0 deletions webpack.customizer.prod.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,18 @@ module.exports = {
"sass-loader"
]
},
{
test: /\.css$/i,
use: [
// Creates `style` nodes from JS strings
"style-loader",
// Translates CSS into CommonJS
"css-loader",
]
},
{
test: /\.svg$/,
exclude: /slick.svg$/,
use: [
{
loader: "babel-loader"
Expand Down
10 changes: 10 additions & 0 deletions webpack.robots.prod.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,18 @@ module.exports = {
"sass-loader"
]
},
{
test: /\.css$/i,
use: [
// Creates `style` nodes from JS strings
"style-loader",
// Translates CSS into CommonJS
"css-loader",
]
},
{
test: /\.svg$/,
exclude: /slick.svg$/,
use: [
{
loader: "babel-loader"
Expand Down

0 comments on commit 3480d86

Please sign in to comment.