Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
d0abbe3
Update carbon-components-angular and tslint
youda97 Aug 20, 2019
fe7add6
Merge pull request #22 from youda97/master
zvonimirfras Aug 20, 2019
c2ab4c9
update starter with UI shell and other minor fixes
cal-smith Sep 26, 2019
fce05f8
move service worker into main.ts
cal-smith Sep 26, 2019
3eb4ca8
removed commented styles
cal-smith Sep 26, 2019
69f94c2
fix package versions
cal-smith Sep 26, 2019
37f4075
fix mixed content
cal-smith Sep 26, 2019
e7a99d8
simplify router
cal-smith Sep 26, 2019
a72ca91
use more carbon style tokens
cal-smith Sep 26, 2019
fac8729
add app-header
cal-smith Sep 26, 2019
ec80450
fix tests
cal-smith Sep 27, 2019
5138d9d
update package.json
cal-smith Oct 3, 2019
229ea42
Merge pull request #23 from cal-smith/master
zvonimirfras Oct 7, 2019
19d3ea0
Merge branch 'master' of https://github.com/carbon-design-system/carb…
youda97 Oct 7, 2019
1109942
Fix angular-step-2
youda97 Oct 7, 2019
95e3cb5
Merge
youda97 Oct 7, 2019
f700f1e
Fix review comments
youda97 Oct 8, 2019
4a1c124
Fix review comments
youda97 Oct 11, 2019
58ccc01
fix routing
cal-smith Oct 29, 2019
f28ac0d
fix title
cal-smith Nov 7, 2019
083bb5a
switch to hash router
cal-smith Nov 7, 2019
382f915
init
cal-smith Nov 18, 2019
b9ff045
add crircleci
cal-smith Jul 22, 2020
815881d
add mergify
cal-smith Jul 22, 2020
249a3c3
remove mergify
cal-smith Jul 24, 2020
7c7eaad
fix step 1 circle
cal-smith Jul 30, 2020
41b1c7e
feat(tutorial): complete step 1
Mar 22, 2023
79795b2
feat(tutorial): complete step 2
Mar 27, 2023
c3ba0da
feat(tutorial): complete step 3
Mar 27, 2023
78c20a9
feat(tutorial): complete step 4
Mar 27, 2023
f171642
feat(tutorial): complete step 5
Mar 28, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added .DS_Store
Binary file not shown.
16 changes: 16 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
version: 2.1
jobs:
step-one:
docker:
- image: circleci/node:12.18.2-browsers
working_directory: ~/repo
steps:
- checkout
- run: npm install
- run: npm run test:once
- run: npm run build

workflows:
main:
jobs:
- step-one
1 change: 0 additions & 1 deletion .nvmrc

This file was deleted.

59 changes: 0 additions & 59 deletions README.md

This file was deleted.

126 changes: 0 additions & 126 deletions angular.json

This file was deleted.

12 changes: 0 additions & 12 deletions browserslist

This file was deleted.

17 changes: 17 additions & 0 deletions carbon-angular-tutorial/.browserslistrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# This file is used by the build system to adjust CSS and JS output to support the specified browsers below.
# For additional information regarding the format and rule options, please see:
# https://github.com/browserslist/browserslist#queries

# For the full list of supported browsers by the Angular framework, please see:
# https://angular.io/guide/browser-support

# You can see what browsers were selected by your queries by running:
# npx browserslist

last 1 Chrome version
last 1 Firefox version
last 2 Edge major versions
last 2 Safari major versions
last 2 iOS major versions
Firefox ESR
not IE 11 # Angular supports IE 11 only as an opt-in. To opt-in, remove the 'not' prefix on this line.
1 change: 1 addition & 0 deletions carbon-angular-tutorial/.cfignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
node_modules/.cache
9 changes: 6 additions & 3 deletions .editorconfig → carbon-angular-tutorial/.editorconfig
Original file line number Diff line number Diff line change
@@ -1,13 +1,16 @@
# Editor configuration, see http://editorconfig.org
# Editor configuration, see https://editorconfig.org
root = true

[*]
charset = utf-8
indent_style = tab
indent_size = 4
indent_style = space
indent_size = 2
insert_final_newline = true
trim_trailing_whitespace = true

[*.ts]
quote_type = single

[*.md]
max_line_length = off
trim_trailing_whitespace = false
53 changes: 53 additions & 0 deletions carbon-angular-tutorial/.eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
{
"root": true,
"ignorePatterns": [
"projects/**/*"
],
"overrides": [
{
"files": [
"*.ts"
],
"parserOptions": {
"project": [
"tsconfig.json"
],
"createDefaultProgram": true
},
"extends": [
"plugin:@angular-eslint/recommended",
"plugin:@angular-eslint/template/process-inline-templates"
],
"rules": {
"@angular-eslint/directive-selector": [
"error",
{
"type": "attribute",
"prefix": "app",
"style": "camelCase"
}
],
"@angular-eslint/component-selector": [
"error",
{
"type": "element",
"prefix": "app",
"style": "kebab-case"
}
],
"no-empty-function": "off",
"@typescript-eslint/no-empty-function": "off",
"@angular-eslint/no-empty-lifecycle-method": "off"
}
},
{
"files": [
"*.html"
],
"extends": [
"plugin:@angular-eslint/template/recommended"
],
"rules": {}
}
]
}
18 changes: 11 additions & 7 deletions .gitignore → carbon-angular-tutorial/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,16 @@
# compiled output
/dist
/tmp
/out-tsc
# Only exists if Bazel was run
/bazel-out

# dependencies
/node_modules

# profiling files
chrome-profiler-events*.json

# IDEs and editors
/.idea
.project
Expand All @@ -22,20 +28,18 @@
!.vscode/tasks.json
!.vscode/launch.json
!.vscode/extensions.json
.history/*

# misc
/.sass-cache
/connect.lock
/coverage/*
/coverage
/libpeerconnection.log
npm-debug.log*
npm-debug.log
yarn-error.log
testem.log
/typings

# e2e
/e2e/*.js
/e2e/*.map

#System Files
# System Files
.DS_Store
Thumbs.db
27 changes: 27 additions & 0 deletions carbon-angular-tutorial/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
# CarbonAngularTutorial

This project was generated with [Angular CLI](https://github.com/angular/angular-cli) version 12.1.4.

## Development server

Run `ng serve` for a dev server. Navigate to `http://localhost:4200/`. The app will automatically reload if you change any of the source files.

## Code scaffolding

Run `ng generate component component-name` to generate a new component. You can also use `ng generate directive|pipe|service|class|guard|interface|enum|module`.

## Build

Run `ng build` to build the project. The build artifacts will be stored in the `dist/` directory.

## Running unit tests

Run `ng test` to execute the unit tests via [Karma](https://karma-runner.github.io).

## Running end-to-end tests

Run `ng e2e` to execute the end-to-end tests via a platform of your choice. To use this command, you need to first add a package that implements end-to-end testing capabilities.

## Further help

To get more help on the Angular CLI use `ng help` or go check out the [Angular CLI Overview and Command Reference](https://angular.io/cli) page.
Loading