Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(analytics): パッケージを追加 #85

Merged
merged 2 commits into from
Jan 30, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
4 changes: 4 additions & 0 deletions .github/labeler.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,10 @@ labels:
- "catalog/.+"

# Core Package labels
- label: "@core/analytics"
files:
- "core/analytics/.+"

- label: "@core/common"
files:
- "core/common/.+"
Expand Down
3 changes: 3 additions & 0 deletions .github/labels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,9 @@
description: "Catalog development"

# Core Package labels
- name: "@core/analytics"
color: "0b2ebd"

- name: "@core/common"
color: "e99695"

Expand Down
27 changes: 27 additions & 0 deletions core/analytics/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
# Miscellaneous
*.class
*.log
*.pyc
*.swp
.DS_Store
.atom/
.buildlog/
.history
.svn/
migrate_working_dir/

# IntelliJ related
*.iml
*.ipr
*.iws
.idea/

# The .vscode folder contains launch configuration and tasks you configure in
# VS Code which you may wish to be included in version control, so this line
# is commented out by default.
#.vscode/

# Flutter/Dart/Pub related
**/doc/api/
.dart_tool/
build/
10 changes: 10 additions & 0 deletions core/analytics/.metadata
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# This file tracks properties of this Flutter project.
# Used by Flutter tool to assess capabilities and perform upgrades etc.
#
# This file should be version controlled and should not be manually edited.

version:
revision: "78666c8dc57e9f7548ca9f8dd0740fbf0c658dc9"
channel: "stable"

project_type: package
3 changes: 3 additions & 0 deletions core/analytics/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# core_common package

![Dependency graph](../../docs/images/graphs/dep_graph_core_common.svg)
1 change: 1 addition & 0 deletions core/analytics/lib/analytics.dart
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
// Ex: export 'src/[something]/index.dart';
Empty file.
Loading
Loading