@minnai/create-aura-app 0.0.14 → 0.0.15

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@minnai/create-aura-app",
3
- "version": "0.0.14",
3
+ "version": "0.0.15",
4
4
  "description": "Scaffolding tool for new Aura projects",
5
5
  "bin": "dist/index.js",
6
6
  "files": [
@@ -1,7 +1,6 @@
1
1
  import { atmosphere } from '@minnai/aura/atmosphere';
2
2
  import TasksAIR from '@minnai/aura/atmosphere/tasks';
3
3
  import YouTubeAIR from '@minnai/aura/atmosphere/youtube-player';
4
- import NoteTakerAIR from '@minnai/aura/atmosphere/note-taker';
5
4
 
6
5
  // Local Ambiance
7
6
  import { StocksManifest, Component as StocksComponent, resources as stocksResources } from './stocks-air';
@@ -12,7 +11,7 @@ export const registerExampleAIRs = () => {
12
11
  // 1. Register Standard AIRs (Core)
13
12
  // The Standard AIRs export a wrapper object { manifest, resources, component }
14
13
  // We need to flatten this to match AIRManifest { id, meta, component }
15
- [TasksAIR, YouTubeAIR, NoteTakerAIR].forEach((air: any) => {
14
+ [TasksAIR, YouTubeAIR].forEach((air: any) => {
16
15
  if (LOCAL_AIRS.includes(air.manifest.id)) {
17
16
  atmosphere.register({
18
17
  ...air.manifest,
@@ -40,7 +39,6 @@ export const registerExampleAIRs = () => {
40
39
  };
41
40
 
42
41
  export const EXAMPLE_AIRS = [
43
- NoteTakerAIR.manifest,
44
42
  YouTubeAIR.manifest,
45
43
  TasksAIR.manifest,
46
44
  StocksManifest,
@@ -13,7 +13,7 @@ export function Playground() {
13
13
  const [activeFile, setActiveFile] = useState<string | null>(null);
14
14
  const [fileContent, setFileContent] = useState<string>('');
15
15
 
16
- const BUILTIN_AIRS = ['note-taker-air', 'youtube-player-air', 'tasks-air'];
16
+ const BUILTIN_AIRS = ['youtube-player-air', 'tasks-air'];
17
17
 
18
18
  const handleSelect = async (id: string) => {
19
19
  setSelectedId(id);