Skip to content

Commit

Permalink
Merge pull request #59 from js-smart/development
Browse files Browse the repository at this point in the history
release: bump version to 15.1.0
  • Loading branch information
pavankjadda authored Feb 16, 2023
2 parents e338d19 + b7560d6 commit 395f990
Show file tree
Hide file tree
Showing 8 changed files with 3,787 additions and 3,792 deletions.
189 changes: 0 additions & 189 deletions angular.json

This file was deleted.

29 changes: 29 additions & 0 deletions apps/ngxsmart-demo-e2e/project.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
{
"name": "ngxsmart-demo-e2e",
"$schema": "../../node_modules/nx/schemas/project-schema.json",
"sourceRoot": "apps/ngxsmart-demo-e2e/src",
"projectType": "application",
"targets": {
"e2e": {
"executor": "@nrwl/cypress:cypress",
"options": {
"cypressConfig": "apps/ngxsmart-demo-e2e/cypress.json",
"devServerTarget": "ngxsmart-demo:serve:development"
},
"configurations": {
"production": {
"devServerTarget": "ngxsmart-demo:serve:production"
}
}
},
"lint": {
"executor": "@nrwl/linter:eslint",
"outputs": ["{options.outputFile}"],
"options": {
"lintFilePatterns": ["apps/ngxsmart-demo-e2e/**/*.{js,ts}"]
}
}
},
"tags": [],
"implicitDependencies": ["ngxsmart-demo"]
}
89 changes: 89 additions & 0 deletions apps/ngxsmart-demo/project.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,89 @@
{
"name": "ngxsmart-demo",
"$schema": "../../node_modules/nx/schemas/project-schema.json",
"projectType": "application",
"sourceRoot": "apps/ngxsmart-demo/src",
"prefix": "ngxsmart",
"targets": {
"build": {
"executor": "@angular-devkit/build-angular:browser-esbuild",
"outputs": ["{options.outputPath}"],
"options": {
"outputPath": "dist/apps/ngxsmart-demo",
"index": "apps/ngxsmart-demo/src/index.html",
"main": "apps/ngxsmart-demo/src/main.ts",
"polyfills": "apps/ngxsmart-demo/src/polyfills.ts",
"tsConfig": "apps/ngxsmart-demo/tsconfig.app.json",
"inlineStyleLanguage": "scss",
"assets": ["apps/ngxsmart-demo/src/favicon.ico", "apps/ngxsmart-demo/src/assets"],
"styles": ["./node_modules/@angular/material/prebuilt-themes/indigo-pink.css", "apps/ngxsmart-demo/src/styles.scss"],
"scripts": []
},
"configurations": {
"production": {
"budgets": [
{
"type": "initial",
"maximumWarning": "1mb",
"maximumError": "5mb"
},
{
"type": "anyComponentStyle",
"maximumWarning": "2kb",
"maximumError": "4kb"
}
],
"fileReplacements": [
{
"replace": "apps/ngxsmart-demo/src/environments/environment.ts",
"with": "apps/ngxsmart-demo/src/environments/environment.prod.ts"
}
],
"outputHashing": "all"
},
"development": {
"buildOptimizer": false,
"optimization": false,
"vendorChunk": true,
"extractLicenses": false,
"sourceMap": true,
"namedChunks": true
}
},
"defaultConfiguration": "production"
},
"serve": {
"executor": "@angular-devkit/build-angular:dev-server",
"configurations": {
"production": {
"browserTarget": "ngxsmart-demo:build:production"
},
"development": {
"browserTarget": "ngxsmart-demo:build:development"
}
},
"defaultConfiguration": "development"
},
"extract-i18n": {
"executor": "@angular-devkit/build-angular:extract-i18n",
"options": {
"browserTarget": "ngxsmart-demo:build"
}
},
"lint": {
"executor": "@nrwl/linter:eslint",
"options": {
"lintFilePatterns": ["apps/ngxsmart-demo/src/**/*.ts", "apps/ngxsmart-demo/src/**/*.html"]
}
},
"test": {
"executor": "@nrwl/jest:jest",
"outputs": ["{workspaceRoot}/coverage/apps/ngxsmart-demo"],
"options": {
"jestConfig": "apps/ngxsmart-demo/jest.config.ts",
"passWithNoTests": true
}
}
},
"tags": []
}
2 changes: 1 addition & 1 deletion libs/ngxsmart/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@js-smart/ngxsmart",
"version": "15.0.1",
"version": "15.1.0",
"repository": {
"type": "git",
"url": "https://github.com/js-smart/ngxsmart.git"
Expand Down
40 changes: 40 additions & 0 deletions libs/ngxsmart/project.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
{
"name": "ngxsmart",
"$schema": "../../node_modules/nx/schemas/project-schema.json",
"projectType": "library",
"sourceRoot": "libs/ngxsmart/src",
"prefix": "ngxsmart",
"targets": {
"build": {
"executor": "@nrwl/angular:package",
"outputs": ["{workspaceRoot}/dist/libs/ngxsmart"],
"options": {
"project": "libs/ngxsmart/ng-package.json"
},
"configurations": {
"production": {
"tsConfig": "libs/ngxsmart/tsconfig.lib.prod.json"
},
"development": {
"tsConfig": "libs/ngxsmart/tsconfig.lib.json"
}
},
"defaultConfiguration": "production"
},
"test": {
"executor": "@nrwl/jest:jest",
"outputs": ["{workspaceRoot}/coverage/libs/ngxsmart"],
"options": {
"jestConfig": "libs/ngxsmart/jest.config.ts",
"passWithNoTests": true
}
},
"lint": {
"executor": "@nrwl/linter:eslint",
"options": {
"lintFilePatterns": ["libs/ngxsmart/src/**/*.ts", "libs/ngxsmart/src/**/*.html"]
}
}
},
"tags": []
}
Loading

0 comments on commit 395f990

Please sign in to comment.