Skip to content

Commit df26ef4

Browse files
Merge pull request #1 from angular-package/1.0.x
1.0.0
2 parents ba430c3 + e3cf26a commit df26ef4

18 files changed

+2336
-1
lines changed

.gitignore

+132
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,132 @@
1+
# See http://help.github.com/ignore-files/ for more about ignoring files.
2+
3+
# compiled output
4+
/dist
5+
/tmp
6+
/out-tsc
7+
# Only exists if Bazel was run
8+
/bazel-out
9+
10+
# profiling files
11+
chrome-profiler-events*.json
12+
speed-measure-plugin*.json
13+
14+
# IDEs and editors
15+
/.idea
16+
.project
17+
.classpath
18+
.c9/
19+
*.launch
20+
.settings/
21+
*.sublime-workspace
22+
23+
# IDE - VSCode
24+
.vscode/*
25+
!.vscode/settings.json
26+
!.vscode/tasks.json
27+
!.vscode/launch.json
28+
!.vscode/extensions.json
29+
.history/*
30+
31+
# misc
32+
/.sass-cache
33+
/connect.lock
34+
35+
# Logs
36+
/libpeerconnection.log
37+
logs
38+
*.log
39+
npm-debug.log*
40+
testem.log
41+
yarn-debug.log*
42+
yarn-error.log*
43+
44+
# Runtime data
45+
pids
46+
*.pid
47+
*.seed
48+
*.pid.lock
49+
50+
# Directory for instrumented libs generated by jscoverage/JSCover
51+
lib-cov
52+
53+
# Coverage directory used by tools like istanbul
54+
coverage
55+
56+
# nyc test coverage
57+
.nyc_output
58+
59+
# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
60+
.grunt
61+
62+
# Bower dependency directory (https://bower.io/)
63+
bower_components
64+
65+
# node-waf configuration
66+
.lock-wscript
67+
68+
# Compiled binary addons (https://nodejs.org/api/addons.html)
69+
build/Release
70+
71+
# Dependency directories
72+
node_modules/
73+
jspm_packages/
74+
75+
# TypeScript v1 declaration files
76+
typings/
77+
78+
# Optional npm cache directory
79+
.npm
80+
81+
# Optional eslint cache
82+
.eslintcache
83+
84+
# Optional REPL history
85+
.node_repl_history
86+
87+
# Output of 'npm pack'
88+
*.tgz
89+
90+
# Yarn Integrity file
91+
.yarn-integrity
92+
93+
# dotenv environment variables file
94+
.env
95+
96+
# parcel-bundler cache (https://parceljs.org/)
97+
.cache
98+
99+
# next.js build output
100+
.next
101+
102+
# nuxt.js build output
103+
.nuxt
104+
105+
# vuepress build output
106+
.vuepress/dist
107+
108+
# Serverless directories
109+
.serverless/
110+
111+
# FuseBox cache
112+
.fusebox/
113+
114+
#DynamoDB Local files
115+
.dynamodb/
116+
117+
# OS generated files
118+
Thumbs.db
119+
.DS_Store
120+
121+
# Ignored files
122+
/.vscode/*
123+
*.code-workspace
124+
!.vscode/tasks.json
125+
build
126+
dist
127+
graphics
128+
fonts
129+
*.ignore*
130+
131+
# demos
132+
demo

LICENSE

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2021 angular package
3+
Copyright (c) 2021 angular-package
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

0 commit comments

Comments
 (0)